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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a7f3a;
    --accent-color: #8ba365;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f9f7f4;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.ad-notice {
    background-color: var(--background-light);
    padding: 8px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.ad-notice span {
    font-size: 13px;
    color: var(--text-medium);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--background-white);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

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

.hero-editorial {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--background-light);
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 60px 40px 40px;
    color: var(--background-white);
}

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

.hero-text-overlay .lead-text {
    font-size: 22px;
    line-height: 1.5;
    max-width: 700px;
    opacity: 0.95;
}

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

.intro-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-medium);
}

.content-narrow p {
    margin-bottom: 24px;
}

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.inline-image-section {
    margin: 50px 0;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--background-light);
}

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

.testimonial-inline {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: var(--text-medium);
    font-style: normal;
}

.inline-cta-block {
    margin: 50px 0;
    padding: 40px;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-align: center;
}

.inline-cta-block h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    color: var(--background-white);
}

.cta-link-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--background-white);
    color: var(--primary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link-inline:hover {
    background-color: var(--accent-color);
    color: var(--background-white);
}

.cta-link-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    margin-left: 15px;
}

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

.audience-list {
    list-style-position: inside;
    margin: 25px 0;
}

.audience-list li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.form-editorial-section {
    background-color: var(--background-light);
    padding: 60px 0;
    margin: 60px 0;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid var(--border-color);
    background-color: var(--background-white);
    color: var(--text-dark);
    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);
}

.btn-submit-editorial {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--background-white);
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit-editorial:hover {
    background-color: var(--secondary-color);
}

.disclaimer-box {
    margin: 50px 0;
    padding: 25px 30px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

.final-cta-section {
    text-align: center;
    margin: 50px 0;
}

.page-header-editorial {
    padding: 80px 40px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

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

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

.contact-item p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.note-text {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-faq-section {
    margin: 60px 0;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
}

.contact-cta-section {
    margin: 50px 0;
    padding: 30px;
    background-color: var(--background-light);
    text-align: center;
}

.service-editorial-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.service-editorial-block:nth-child(even) {
    flex-direction: column;
}

.service-image-wrapper {
    width: 100%;
    height: 400px;
    background-color: var(--background-light);
    margin-bottom: 25px;
}

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

.service-text h2 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.cta-link-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link-service:hover {
    background-color: var(--secondary-color);
}

.services-summary {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.benefits-list {
    list-style-position: inside;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.thanks-section {
    text-align: center;
    padding: 100px 30px;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.thanks-details {
    margin: 40px auto;
    padding: 30px;
    background-color: var(--background-light);
    max-width: 600px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin: 50px auto;
    max-width: 600px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-next-steps ol {
    list-style-position: inside;
    padding-left: 0;
}

.thanks-next-steps li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
}

.thanks-support {
    margin: 40px 0;
}

.thanks-support p {
    font-size: 17px;
    margin-bottom: 10px;
}

.thanks-cta {
    margin-top: 50px;
}

.legal-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 45px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.footer-editorial {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 50px 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column a {
    color: var(--background-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

@media (min-width: 768px) {
    .service-editorial-block {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .service-editorial-block:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-image-wrapper {
        flex: 0 0 45%;
        height: 350px;
        margin-bottom: 0;
    }

    .service-text {
        flex: 1;
    }
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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