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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97be5a;
    --accent-color: #4a7c59;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c73e1d;
}

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

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

.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.editorial-content {
    padding: 40px 20px;
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--bg-light);
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    padding: 50px 40px 35px;
}

.hero-text-overlay h1 {
    color: var(--bg-white);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 400;
    max-width: 600px;
}

h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--text-dark);
}

h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--text-dark);
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-medium);
}

p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-medium);
}

.intro-large {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.inline-image-block {
    margin: 40px 0;
    background-color: var(--bg-light);
    border-radius: 2px;
}

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

figcaption {
    padding: 15px 20px;
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    background-color: var(--bg-light);
}

.cta-inline {
    margin: 45px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.cta-inline.secondary {
    background-color: #f0f4f8;
    border-left-color: var(--secondary-color);
}

.cta-text {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.btn-text-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-text-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.testimonial-block {
    margin: 40px 0;
    padding: 30px 35px;
    background-color: #f9fafb;
    border-left: 3px solid var(--secondary-color);
}

.testimonial-block blockquote {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
}

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

.reference-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.reference-link:hover {
    color: var(--primary-color);
}

.services-editorial {
    margin: 50px 0;
}

.service-card-editorial {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.service-card-editorial.featured {
    background-color: #fafbf8;
    padding: 35px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
}

.featured-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.service-features span {
    background-color: var(--bg-light);
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-medium);
    border-radius: 20px;
}

.service-card-editorial.featured .service-features span {
    background-color: var(--bg-white);
}

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

.btn-service {
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

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

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

.btn-service.primary:hover {
    background-color: #1f4420;
}

.service-details {
    margin: 25px 0;
}

.service-details h4 {
    font-size: 17px;
    margin-bottom: 12px;
}

.service-details ul {
    list-style-position: inside;
    padding-left: 0;
}

.service-details li {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-medium);
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.contact-form-editorial {
    max-width: 600px;
    margin: 30px auto 0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-consent {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

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

.checkbox-label span {
    font-size: 15px;
    color: var(--text-medium);
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: #1f4420;
}

.testimonials-section {
    margin: 60px 0;
}

.scientific-references {
    margin: 60px 0;
    padding: 30px;
    background-color: #f5f7f9;
    border-radius: 4px;
}

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

.scientific-references ol {
    padding-left: 20px;
}

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

.scientific-references a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff9e6;
    border: 1px solid #ffe082;
    border-radius: 4px;
}

.disclaimer-section h3 {
    font-size: 19px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #b8860b;
}

.disclaimer-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 20px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 0;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 25px 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: var(--bg-white);
    font-size: 15px;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

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

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

.btn-cookie.reject {
    background-color: #666;
    color: var(--bg-white);
}

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

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

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

.contact-detail h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-text {
    margin: 40px 0;
}

.contact-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.thanks-container {
    text-align: center;
    padding: 40px 0;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
    text-align: left;
}

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

.thanks-next-steps ol {
    padding-left: 25px;
    margin-top: 20px;
}

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

.thanks-additional {
    text-align: left;
    margin: 50px 0;
}

.thanks-links {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1f4420;
}

.legal-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.legal-content h1 {
    font-size: 34px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: 20px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

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

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

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

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

    .hero-text-overlay h1 {
        font-size: 28px;
        padding: 30px 20px 20px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    .intro-large {
        font-size: 19px;
    }

    p {
        font-size: 17px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}