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

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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-link {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-menu a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4a574;
}

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

.hero-editorial {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 4px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #2c2c2c;
    font-weight: 400;
}

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

.story-intro {
    background-color: #fff;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 35px;
    background-color: #d4a574;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #c29563;
}

.problem-section {
    background-color: #f9f9f9;
}

.problem-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2c2c2c;
}

.image-inline {
    margin: 40px 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.problem-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.problem-section a {
    color: #d4a574;
    text-decoration: none;
    border-bottom: 1px solid #d4a574;
}

.problem-section a:hover {
    color: #c29563;
}

.insight-section {
    background-color: #fff;
}

.insight-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.editorial-quote {
    background-color: #f5f5f5;
    padding: 30px;
    border-left: 4px solid #d4a574;
    font-style: italic;
    margin: 40px 0;
    font-size: 19px;
    line-height: 1.6;
}

.editorial-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.trust-section {
    background-color: #fdfcfb;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 400;
}

.trust-points {
    margin: 40px 0;
}

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

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 500;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
}

.testimonials-inline {
    background-color: #f9f9f9;
}

.testimonials-inline h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 400;
}

.testimonial-block {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 4px;
    border-left: 3px solid #d4a574;
}

.testimonial-block p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 14px;
    color: #777;
}

.products-reveal {
    background-color: #fff;
}

.products-reveal h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: center;
}

.intro-products {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

.product-card {
    margin-bottom: 50px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fafafa;
}

.product-image {
    width: 100%;
    height: 400px;
}

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

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

.product-composition {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.product-price {
    font-size: 28px;
    font-weight: 600;
    color: #d4a574;
    margin: 20px 0;
}

.select-product {
    padding: 12px 30px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-product:hover {
    background-color: #444;
}

.order-section {
    background-color: #f9f9f9;
}

.order-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 400;
}

.order-section > div > p {
    font-size: 18px;
    margin-bottom: 35px;
}

.order-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4a574;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.form-group a {
    color: #d4a574;
    text-decoration: none;
}

.form-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #d4a574;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #fff;
    border-top: 1px solid #e8e8e8;
}

.disclaimer-text {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    text-align: center;
}

.references-section {
    background-color: #fafafa;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: #d4a574;
    text-decoration: none;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 30px 20px;
}

.footer-container {
    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: 15px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.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 {
    font-size: 15px;
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #d4a574;
    color: #fff;
}

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

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

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

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

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

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