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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --primary-light: #4a8a4c;
    --text-color: #2d2d2d;
    --text-light: #666666;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e0e0e0;
    --accent-color: #8b6f47;
    --link-color: #2c5f2d;
    --footer-bg: #1a1a1a;
    --footer-text: #cccccc;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: white;
    padding: 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-editorial {
    background-color: var(--background);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

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

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

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 100%;
}

.editorial-flow {
    width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    padding: 0 24px;
}

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

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.95;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 32px;
    font-weight: 400;
}

.content-narrow p {
    margin-bottom: 24px;
    color: var(--text-color);
}

.content-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-top: 56px;
    margin-bottom: 24px;
    color: var(--text-color);
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 600;
}

.content-narrow ul {
    margin-bottom: 24px;
    padding-left: 32px;
}

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

.inline-image-block {
    margin: 48px 0;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.image-caption {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.insight-box {
    background-color: var(--background-alt);
    border-left: 4px solid var(--primary-color);
    padding: 28px 32px;
    margin: 40px 0;
    border-radius: 4px;
}

.insight-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 22px;
}

.insight-box p {
    margin-bottom: 0;
}

.feature-block {
    display: flex;
    gap: 40px;
    margin: 48px 0;
    align-items: flex-start;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    width: 280px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #f0f0f0;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin-top: 0;
    font-size: 22px;
}

.testimonial {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 32px;
    margin: 40px 0;
    border-radius: 8px;
    font-style: italic;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 16px;
    display: block;
}

.cta-inline {
    text-align: center;
    margin: 48px 0;
}

.cta-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    vertical-align: super;
}

.citation:hover {
    text-decoration: underline;
}

.form-section {
    background-color: var(--background-alt);
    padding: 48px 40px;
    border-radius: 8px;
    margin: 56px 0;
}

.form-section h3 {
    margin-top: 0;
    text-align: center;
    color: var(--primary-color);
}

.consultation-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label a {
    color: var(--link-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 48px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.disclaimer-section {
    background-color: #fff8e6;
    border: 1px solid #ffd966;
    padding: 24px 28px;
    border-radius: 6px;
    margin: 48px 0;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: #664d00;
    margin: 0;
}

.references-section {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.references-section h3 {
    margin-top: 0;
    font-size: 20px;
}

.references-list {
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.page-header-editorial {
    text-align: center;
    padding: 80px 24px 48px;
    background-color: var(--background-alt);
}

.page-header-editorial h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.page-intro {
    font-size: 20px;
    color: var(--text-light);
}

.services-list-editorial {
    margin-top: 48px;
}

.service-item {
    display: flex;
    gap: 48px;
    margin-bottom: 72px;
    align-items: flex-start;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-top: 0;
    font-size: 32px;
    margin-bottom: 16px;
}

.service-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content ul {
    margin-bottom: 20px;
}

.service-benefits {
    background-color: #f0f7f0;
    padding: 20px 24px;
    border-radius: 6px;
    margin: 24px 0;
}

.service-benefits p {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
}

.price-reveal {
    margin: 32px 0;
    text-align: left;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.service-image-wrapper {
    width: 360px;
    flex-shrink: 0;
}

.service-image {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.comparison-section {
    text-align: center;
    margin-top: 64px;
    padding: 48px 32px;
    background-color: var(--background-alt);
    border-radius: 8px;
}

.comparison-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.principle-block {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 32px;
    margin: 32px 0;
    border-radius: 8px;
}

.principle-block h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.contact-info-section {
    display: flex;
    gap: 64px;
    margin-top: 40px;
}

.contact-block {
    flex: 1;
}

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

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--primary-color);
}

.contact-item p {
    margin: 0;
    line-height: 1.7;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-form {
    margin-top: 24px;
}

.info-notice {
    background-color: var(--background-alt);
    padding: 28px 32px;
    border-radius: 6px;
    margin-top: 48px;
}

.info-notice h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--primary-color);
}

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.service-confirmation {
    background-color: var(--background-alt);
    padding: 20px 28px;
    border-radius: 6px;
    margin-bottom: 48px;
    font-size: 18px;
    color: var(--text-color);
}

.next-steps {
    margin: 56px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 20px;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 48px 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.info-box {
    background-color: var(--background-alt);
    padding: 28px 32px;
    border-radius: 6px;
    text-align: left;
    margin-top: 48px;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-box p {
    margin-bottom: 12px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 24px;
}

.legal-content strong {
    color: var(--text-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--background-alt);
    font-weight: 600;
    color: var(--text-color);
}

.footer-editorial {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 56px 24px 24px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

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

.footer-section a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 36px;
    }

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

    .lead-text {
        font-size: 20px;
    }

    .content-narrow h2 {
        font-size: 28px;
    }

    .content-narrow h3 {
        font-size: 22px;
    }

    .feature-block {
        flex-direction: column;
    }

    .feature-block.reverse {
        flex-direction: column;
    }

    .feature-image {
        width: 100%;
        max-width: 400px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .service-item {
        flex-direction: column;
        gap: 32px;
    }

    .service-item.reverse {
        flex-direction: column;
    }

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

    .price {
        font-size: 36px;
    }

    .contact-info-section {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

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

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

    .brand {
        font-size: 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .page-header-editorial h1 {
        font-size: 36px;
    }

    .thanks-section h1 {
        font-size: 32px;
    }
}