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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: #2c2c2c;
    background-color: #fafaf8;
}

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

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

.brand-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b7355;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.4rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

.hero-text-narrow {
    margin-bottom: 2.5rem;
}

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

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

.hero-image-inline {
    margin: 2rem 0;
}

.hero-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.content-narrow {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-paragraph {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

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

.content-narrow h2 {
    font-size: 1.9rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #2c2c2c;
}

.content-narrow h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #3a3a3a;
}

.inline-cta-soft {
    background-color: #f9f7f4;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 3px solid #8b7355;
}

.inline-cta-soft p {
    margin: 0;
    font-size: 1.15rem;
    font-style: italic;
    color: #3a3a3a;
}

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

.inline-image-medium img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.inline-image-medium figcaption {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.scientific-ref {
    color: #8b7355;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
}

.scientific-ref:hover {
    text-decoration: underline;
}

.testimonial-inline {
    background-color: #fff;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-inline blockquote {
    border: none;
}

.testimonial-inline p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

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

.insight-box {
    background-color: #8b7355;
    color: #fff;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 2px;
}

.insight-box h3 {
    color: #fff;
    margin-top: 0;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.insight-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.product-story {
    background-color: #fff;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}

.product-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.composition-detail {
    background-color: #f9f7f4;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 2px;
}

.composition-detail ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.composition-detail li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8b7355;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.cta-inline {
    background-color: #2c2c2c;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #8b7355;
}

.form-editorial {
    background-color: #f9f7f4;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 2px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.submit-btn-editorial {
    background-color: #8b7355;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 2px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn-editorial:hover {
    background-color: #6d5a44;
}

.disclaimer-section {
    background-color: #fff3e0;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #ff9800;
    border-radius: 2px;
}

.disclaimer-section h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #e65100;
}

.disclaimer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5d4037;
    margin: 0;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8b7355;
}

.references-list {
    list-style: decimal;
    margin-left: 1.2rem;
    font-size: 0.85rem;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #8b7355;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #6d5a44;
}

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

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

.thanks-message {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 3rem auto;
}

.thanks-message h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #8b7355;
}

.thanks-message p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-message .highlight {
    font-weight: 600;
    color: #2c2c2c;
}

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

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

    .hero-text-narrow h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

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

    .intro-paragraph {
        font-size: 1.1rem;
    }

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

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

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