/* 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: #1a1a1a;
    background: #ffffff;
}

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

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e4620;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.96);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #97d497;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

.btn-accept {
    background: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1e4620;
}

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

.btn-reject:hover {
    border-color: #999;
}

/* Navigation */
.nav-minimal {
    padding: 1.5rem 1rem;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.brand-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

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

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

.nav-menu li a {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    display: block;
    padding: 0.5rem 0;
}

/* Editorial Flow Layout */
.editorial-flow {
    max-width: 100%;
}

/* Hero Editorial */
.hero-editorial {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

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

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
}

.hero-image-inline {
    margin: 2rem 0;
    border-radius: 8px;
    width: 100%;
}

/* Content Sections */
.content-section-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.content-section-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.content-section-narrow h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c5f2d;
}

.content-section-narrow p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #333;
}

.content-image-full {
    margin: 2rem 0;
    width: 100%;
    border-radius: 4px;
}

/* Split Image Text */
.split-image-text {
    padding: 4rem 1rem;
    background: #fafafa;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-text,
.split-image {
    flex: 1;
}

.split-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #333;
}

.split-image img {
    width: 100%;
    border-radius: 4px;
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #2c5f2d;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.inline-cta:hover {
    background: #1e4620;
    color: #ffffff;
}

/* Testimonials */
.testimonial-inline {
    padding: 3rem 1rem;
    background: #2c5f2d;
    color: #ffffff;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

/* Service Cards */
.services-cards {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 0.9rem;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #1e4620;
}

/* Services Detailed */
.services-detailed {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-detail-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
}

.service-image {
    width: 100%;
    height: auto;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #444;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

/* CTA Sections */
.cta-section-centered {
    padding: 4rem 1rem;
    text-align: center;
    background: #f8fdf8;
}

.cta-section-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f2d;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #1e4620;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

/* Form Section */
.form-section {
    padding: 4rem 1rem;
    background: #ffffff;
}

.form-container-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-narrow h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    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: #2c5f2d;
}

.btn-submit {
    padding: 1rem;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 0.5rem;
}

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

/* Sticky CTA Bar */
.final-cta-sticky {
    position: sticky;
    bottom: 0;
    z-index: 100;
}

.sticky-cta-bar {
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sticky-cta-bar span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: #2c5f2d;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-sticky:hover {
    background: #1e4620;
    color: #ffffff;
}

/* Page Headers */
.page-header-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem;
}

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

.page-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.page-meta {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Contact Info */
.contact-info-section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: #f8fdf8;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 1rem;
    min-height: 60vh;
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid #2c5f2d;
}

.thanks-content {
    text-align: left;
    margin: 3rem 0;
}

.thanks-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.thanks-steps li {
    counter-increment: steps;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.thanks-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-content p {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #555;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2c5f2d;
    color: #ffffff;
}

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

.btn-secondary {
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #ffffff;
}

.thanks-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    font-size: 0.95rem;
    color: #666;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.legal-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #d0d0d0;
    font-size: 0.9rem;
}

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2.5rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.85rem;
    color: #888;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }

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

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

    .split-container {
        flex-direction: row;
        align-items: center;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }

    .contact-info-section {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .sticky-cta-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-editorial {
        padding: 5rem 1rem;
    }

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

    .content-section-narrow {
        padding: 4rem 1rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .service-detail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
