/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a7d;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: lowercase;
}

.brand:hover {
    color: #2980b9;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2980b9;
}

/* Editorial Container - Main Layout */
.editorial-container {
    width: 100%;
    background-color: #ffffff;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 3rem;
    background-color: #f8f9fa;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #546e7a;
    font-weight: 400;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

/* Story Sections */
.story-intro {
    padding: 4rem 0 2rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-section {
    padding: 3rem 0;
}

.story-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Inline Images */
.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    border-radius: 6px;
}

/* Highlight Box */
.highlight-box {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin: 3rem 0;
}

.highlight-box h3 {
    font-size: 1.7rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
}

/* Inline CTA */
.inline-cta-wrapper {
    text-align: center;
    padding: 2rem 0;
}

.inline-cta-link {
    display: inline-block;
    font-size: 1.2rem;
    color: #2980b9;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid #2980b9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.inline-cta-link:hover {
    background-color: #2980b9;
    color: #ffffff;
}

/* Services Inline */
.services-inline {
    padding: 3rem 0;
}

.services-inline h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-card-editorial {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-editorial:last-child {
    border-bottom: none;
}

.service-card-editorial h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-editorial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.price-note {
    font-size: 0.95rem;
    color: #7f8c8d;
}

/* Testimonial */
.testimonial-inline {
    padding: 3rem 0;
    background-color: #ecf0f1;
    margin: 3rem 0;
}

.testimonial-inline blockquote {
    border-left: 4px solid #2980b9;
    padding-left: 2rem;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial-inline footer {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    margin: 3rem 0 0;
}

.form-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-section > .narrow-column > p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #546e7a;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.btn-submit {
    background-color: #2980b9;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a5a7d;
}

/* Final Note */
.final-note {
    padding: 3rem 0 4rem;
}

.final-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-intro {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.6;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.service-detail > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-detail h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.service-detail ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-detail ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-detail ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-ideal {
    font-weight: 600;
    color: #2c3e50;
    font-style: italic;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1a5a7d;
    color: #ffffff;
}

/* Services Info */
.services-info {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.services-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.process-step {
    margin-bottom: 2rem;
}

.process-step h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #546e7a;
}

/* About Page */
.about-image-section {
    padding: 2rem 0;
}

.about-values {
    padding: 3rem 0;
}

.about-values h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 0;
}

.contact-block h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

.location-info {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.location-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.note-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #7f8c8d;
}

.faq-section {
    padding: 3rem 0;
}

.faq-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    font-size: 1.05rem;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-info p {
    font-size: 1.05rem;
    color: #546e7a;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #2980b9;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a5a7d;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #2980b9;
    padding: 0.9rem 2rem;
    border: 2px solid #2980b9;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.thanks-extra {
    padding: 3rem 0;
    text-align: left;
}

.thanks-extra h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-extra p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal-page {
    padding-bottom: 3rem;
}

.update-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.legal-section {
    padding: 2rem 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #546e7a;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-row {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.cookie-name {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.cookie-details p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        display: block;
        padding: 0.8rem 2rem;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .intro-text {
        font-size: 1.15rem;
    }

    .story-section h2 {
        font-size: 1.7rem;
    }

    .services-inline h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .service-card-editorial h3 {
        font-size: 1.4rem;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .thanks-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .narrow-column {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.7rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .service-price-large {
        font-size: 1.6rem;
    }

    .thanks-section h1 {
        font-size: 2rem;
    }
}