* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d6a4f;
}

.editorial-content {
    background-color: #ffffff;
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #74c69d;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background: rgba(45, 106, 79, 0.85);
    border-radius: 4px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.editorial-intro {
    background-color: #f8f9fa;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1b4332;
}

.narrow-text p {
    margin-bottom: 24px;
    font-size: 17px;
}

.narrow-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1b4332;
}

.narrow-text h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #2d6a4f;
}

.narrow-text h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #40916c;
}

.narrow-text h4 {
    font-size: 19px;
    line-height: 1.4;
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 600;
    color: #52b788;
}

.inline-image-wrapper {
    margin: 40px 0;
    background-color: #e9ecef;
}

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

.inline-image-wrapper figcaption {
    padding: 12px 0;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.editorial-quote {
    margin: 40px 0;
    padding: 30px 40px;
    border-left: 4px solid #2d6a4f;
    background-color: #f1faee;
    font-size: 20px;
    font-style: italic;
    color: #1b4332;
}

.services-editorial {
    background-color: #ffffff;
}

.service-card-editorial {
    margin: 50px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

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

.service-image-inline {
    margin-bottom: 25px;
    background-color: #95d5b2;
}

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

.service-card-editorial h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1b4332;
}

.service-card-editorial p {
    margin-bottom: 16px;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: #2d6a4f;
    margin: 20px 0;
}

.cta-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-editorial {
    background-color: #ffffff;
}

.editorial-form {
    margin-top: 35px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    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: #2d6a4f;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1b4332;
}

.trust-editorial {
    background-color: #f8f9fa;
    margin-top: 60px;
}

.stats-inline {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    gap: 30px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 4px;
}

.stat-item strong {
    display: block;
    font-size: 36px;
    color: #2d6a4f;
    margin-bottom: 10px;
}

.stat-item span {
    font-size: 14px;
    color: #6c757d;
}

.disclaimer-box {
    margin: 40px 0;
    padding: 25px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-box p {
    margin-bottom: 0;
    font-size: 15px;
    color: #856404;
}

.main-footer {
    background-color: #1b4332;
    color: #ffffff;
    padding: 50px 0 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #95d5b2;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #d8f3dc;
}

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

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

.footer-section a {
    color: #d8f3dc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95d5b2;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #95d5b2;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #2d6a4f;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1b4332;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #495057;
}

.cta-box {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #d8f3dc 0%, #b7e4c7 100%);
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    font-size: 26px;
    color: #1b4332;
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 17px;
    color: #2d6a4f;
    margin-bottom: 25px;
}

.button-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #1b4332;
}

.button-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2d6a4f;
    text-decoration: none;
    border: 2px solid #2d6a4f;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background-color: #2d6a4f;
    color: #ffffff;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-message {
    text-align: center;
    padding: 60px 0;
}

.thanks-details {
    margin: 30px 0;
    padding: 20px;
    background-color: #d8f3dc;
    border-radius: 4px;
}

.thanks-actions {
    margin: 40px 0;
    text-align: center;
}

.thanks-info {
    margin-top: 50px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.thanks-info ol {
    padding-left: 25px;
}

.thanks-info li {
    margin-bottom: 12px;
    font-size: 16px;
}

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

.values-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-size: 24px;
    line-height: 1;
}

.service-detail-card {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid #e9ecef;
}

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

.service-image-top {
    margin-bottom: 30px;
    background-color: #95d5b2;
}

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

.price-highlight {
    margin: 25px 0;
    padding: 20px;
    background-color: #d8f3dc;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    color: #40916c;
    font-weight: 500;
}

.price-value {
    font-size: 22px;
    color: #1b4332;
    font-weight: 700;
}

.service-includes {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
}

.contact-info-section {
    margin: 50px 0;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 16px;
    margin-bottom: 8px;
}

.note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 3px solid #2d6a4f;
    border-radius: 4px;
}

.faq-item h4 {
    font-size: 18px;
    color: #1b4332;
    margin-top: 0;
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
    color: #495057;
}

.legal-page h2 {
    margin-top: 45px;
}

.legal-page h3 {
    margin-top: 30px;
}

.legal-page h4 {
    margin-top: 20px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

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

.last-updated {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .narrow-text {
        padding: 40px 20px;
    }

    .narrow-text h1 {
        font-size: 32px;
    }

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

    .lead-paragraph {
        font-size: 19px;
    }

    .stats-inline {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .button-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .price-highlight {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        min-height: 400px;
    }

    .hero-text-overlay {
        padding: 25px;
    }

    .hero-text-overlay h1 {
        font-size: 26px;
    }

    .narrow-text h1 {
        font-size: 28px;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}