* {
    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;
}

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

a:hover {
    color: #1c5985;
}

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a472a;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: #555;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a472a;
}

.ad-notice {
    font-size: 0.8rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fafafa;
}

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

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

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.hero-text-overlay {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    margin: -100px auto 0;
    max-width: 650px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-text-overlay h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #1a472a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    color: #444;
}

.content-narrow h2 {
    font-size: 1.8rem;
    color: #1a472a;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.inline-image-block {
    margin: 2.5rem 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    background-color: #f0f0f0;
}

.inline-image-block figcaption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.callout-box {
    background-color: #f8f9fa;
    border-left: 4px solid #52a068;
    padding: 2rem;
    margin: 2.5rem 0;
}

.callout-box h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #1a472a;
}

.callout-box p {
    margin-bottom: 1rem;
}

.inline-cta {
    display: inline-block;
    color: #2980b9;
    font-weight: 600;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #1c5985;
    border-bottom-color: #1c5985;
}

.services-embed {
    margin: 3rem 0;
}

.service-card-editorial {
    background-color: #fafafa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid #52a068;
}

.service-card-editorial h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #1a472a;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
}

.btn-select-service {
    background-color: #52a068;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #3d7d50;
}

.btn-select-service.selected {
    background-color: #1a472a;
}

.consultation-form-wrapper {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.consultation-form-wrapper h2 {
    margin-top: 0;
}

.form-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #856404;
}

.form-notice.hidden {
    display: none;
}

.editorial-form {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    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: #52a068;
}

.btn-submit {
    background-color: #52a068;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background-color: #3d7d50;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.testimonial-inline {
    background-color: #f0f7f2;
    border-left: 4px solid #52a068;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.1rem;
    color: #2c5530;
    margin-bottom: 0.8rem;
}

.testimonial-inline cite {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.disclaimer-section {
    background-color: #fef9e7;
    border: 1px solid #f4d03f;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 3px;
}

.disclaimer-section h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #7d6608;
}

.disclaimer-section p {
    font-size: 0.9rem;
    color: #6b5d07;
    line-height: 1.6;
}

.final-cta-editorial {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    background-color: #f0f7f2;
}

.final-cta-editorial h2 {
    margin-top: 0;
}

.btn-cta-large {
    display: inline-block;
    background-color: #52a068;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 3px;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #3d7d50;
    color: #ffffff;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

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

.footer-brand h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.footer-brand p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

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

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

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #ecf0f1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    background-color: #52a068;
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-cookie:hover {
    background-color: #3d7d50;
}

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

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

.thanks-page {
    text-align: center;
}

.thanks-header {
    margin-bottom: 3rem;
}

.thanks-header h1 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 3px solid #52a068;
}

.step-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #1a472a;
}

.step-item p {
    margin-bottom: 0;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 3px;
    border-left: 4px solid #52a068;
    text-align: left;
    display: none;
}

.service-confirmation h3 {
    margin-top: 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-cta {
    display: inline-block;
    background-color: #52a068;
    color: #ffffff;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #3d7d50;
    color: #ffffff;
}

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

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

.about-cta,
.contact-cta,
.services-cta {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 2.5rem 2rem;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.about-cta h2,
.contact-cta h2,
.services-cta h2 {
    margin-top: 0;
}

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

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    margin: 0;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a472a;
}

.contact-info-block {
    margin: 2rem 0;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    color: #1a472a;
    margin-bottom: 0.8rem;
}

.contact-value {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.6;
}

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

.legal-page {
    padding: 3rem 2rem;
}

.legal-update {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 3px;
}

.cookie-table h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #1a472a;
}

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-text-overlay {
        margin-top: -50px;
        padding: 1.5rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .content-narrow {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .service-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}