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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1f3d2a;
    --primary-light: #4a7c5d;
    --secondary-color: #8b9d83;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-light: #f8f9f7;
    --bg-cream: #fefdfb;
    --border-color: #e0e4dd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

/* Navigation */
.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Editorial Container */
.editorial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 60px;
}

.hero-content-narrow {
    margin-bottom: 40px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    font-weight: 400;
}

.hero-image-inline {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-inline img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Sections */
.content-section {
    margin: 70px 0;
}

.text-block-narrow {
    max-width: 700px;
}

.text-block-narrow h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-block-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 30px 0 16px;
    font-weight: 600;
}

.text-block-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.text-block-narrow ul,
.text-block-narrow ol {
    margin: 20px 0 20px 24px;
    color: var(--text-medium);
    font-size: 18px;
    line-height: 1.8;
}

.text-block-narrow li {
    margin-bottom: 12px;
}

/* Inline Images */
.inline-image-offset {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image-offset img {
    width: 100%;
    height: auto;
    display: block;
}

/* Citation Links */
.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-light);
    transition: var(--transition);
}

.citation:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

/* Insight Block */
.insight-block {
    background-color: var(--bg-cream);
    padding: 50px 40px;
    margin: 60px 0;
    border-left: 4px solid var(--primary-color);
}

/* Service Cards Editorial */
.services-preview {
    margin: 80px 0;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.cta-button-large {
    display: inline-block;
    padding: 18px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.cta-button-secondary {
    display: inline-block;
    padding: 18px 36px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.cta-button-secondary:hover {
    background-color: var(--bg-light);
}

/* Trust Section */
.trust-section {
    margin: 80px 0;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 35px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 15px;
}

/* CTA Sections */
.inline-cta-section {
    margin: 70px 0;
}

.cta-box-inline {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.cta-box-inline h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.cta-box-inline p {
    font-size: 17px;
    margin-bottom: 28px;
    color: var(--bg-light);
}

.cta-section-centered {
    margin: 80px 0;
    text-align: center;
}

.cta-box {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 28px;
    color: var(--text-medium);
}

/* Form Sections */
.form-section {
    margin: 80px 0;
    background-color: var(--bg-cream);
    padding: 50px 40px;
    border-radius: 8px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

/* Disclaimer */
.disclaimer-section {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* References */
.references-section {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.references-list {
    margin: 20px 0 0 24px;
    font-size: 15px;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-light);
    transition: var(--transition);
}

.references-list a:hover {
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 20px 20px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--secondary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background-color: var(--primary-light);
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

/* Page Header */
.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 40px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.page-header .lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-medium);
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

/* Services Detailed */
.services-detailed {
    margin: 60px 0;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 24px 0 12px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin: 16px 0 16px 20px;
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.7;
}

.service-detail-content li {
    margin-bottom: 10px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact Layout */
.contact-info-section {
    margin: 50px 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.email-display {
    color: var(--text-medium);
    font-weight: 500;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.service-selected {
    font-size: 17px;
    color: var(--text-dark);
    margin: 0;
}

.next-steps {
    text-align: left;
    background-color: var(--bg-cream);
    padding: 35px;
    border-radius: 8px;
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.next-steps ol {
    margin-left: 20px;
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
}

.next-steps li {
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.preparation-list {
    margin: 20px 0 20px 24px;
    color: var(--text-medium);
    font-size: 17px;
    line-height: 1.8;
}

.preparation-list li {
    margin-bottom: 12px;
}

/* Legal Page Styles */
.legal-page .text-block-narrow {
    max-width: 800px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

.legal-page li {
    margin-bottom: 10px;
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-top: 1px solid var(--border-color);
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .text-block-narrow h2 {
        font-size: 26px;
    }

    .text-block-narrow p {
        font-size: 17px;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-image {
        max-width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

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

    .text-block-narrow h2 {
        font-size: 24px;
    }

    .service-card {
        padding: 25px;
    }

    .price-tag {
        font-size: 24px;
    }

    .insight-block {
        padding: 30px 20px;
    }

    .form-section {
        padding: 30px 20px;
    }
}
