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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1f3d2a;
    --accent-color: #8b6f47;
    --text-color: #2a2a2a;
    --text-light: #5a5a5a;
    --bg-light: #f8f7f5;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --spacing-small: 1.2rem;
    --spacing-medium: 2.4rem;
    --spacing-large: 4rem;
    --spacing-xlarge: 6rem;
}

body {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: color 0.2s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.editorial-container {
    margin-top: 80px;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.hero-text-overlay h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 2.8rem;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 400;
}

.page-header-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.page-header-narrow h1 {
    font-size: 2.6rem;
    line-height: 1.3;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    font-style: italic;
}

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

.content-narrow h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.content-narrow h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.content-narrow h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.content-narrow p {
    margin-bottom: 1.4rem;
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.content-narrow ul,
.content-narrow ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-narrow li {
    margin-bottom: 0.6rem;
}

.inline-image-block {
    margin: 3rem 0;
    background-color: var(--bg-light);
}

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

.image-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.insight-quote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--accent-color);
    background-color: var(--bg-light);
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-dark);
}

blockquote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--accent-color);
    background-color: var(--bg-light);
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-dark);
}

.service-card-editorial {
    margin: 2.5rem 0;
    padding: 2rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: var(--primary-dark);
}

.cta-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-inline p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn-text-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.2rem;
    transition: opacity 0.2s;
}

.btn-text-link:hover {
    opacity: 0.7;
}

.testimonial-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.disclaimer-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff9f0;
    border: 1px solid #f0d8a8;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.references-section {
    background-color: var(--bg-light);
    padding: 3rem 0;
    margin-top: 4rem;
}

.references-list {
    font-size: 0.9rem;
    line-height: 1.6;
}

.references-list li {
    margin-bottom: 1rem;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.form-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    margin-top: 4rem;
}

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

.form-container-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container-narrow p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.section-divider {
    margin: 4rem 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

.contact-info-block {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
}

.contact-info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-info-block p {
    margin-bottom: 0.5rem;
}

.note-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    font-size: 1rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-content {
    text-align: center;
    padding: 5rem 2rem;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    font-size: 1rem;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.thanks-footer {
    margin-top: 3rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 90, 61, 0.97);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-cookie-accept {
    background-color: #ffffff;
    color: var(--primary-color);
}

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

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

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

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

    .hero-editorial {
        height: 400px;
    }

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

    .page-header-narrow h1 {
        font-size: 2rem;
    }

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

    .content-narrow h1 {
        font-size: 1.8rem;
    }

    .content-narrow h2 {
        font-size: 1.5rem;
    }

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

    .cookie-actions {
        justify-content: center;
    }

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