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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.main-nav {
    background-color: #2c1810;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-full {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.95;
}

.story-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

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

.narrow-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c1810;
    line-height: 1.3;
}

.narrow-content h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #3d2817;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

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

.reference-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.reference-link:hover {
    text-decoration: underline;
}

.offset-section {
    padding: 100px 20px;
    background-color: #fff;
}

.offset-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.offset-text {
    flex: 1;
}

.offset-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c1810;
}

.offset-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b8e23;
    font-weight: bold;
    font-size: 18px;
}

.offset-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

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

.testimonial-flow {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.testimonial-flow h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c1810;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 20px;
    background-color: #fff;
}

.wide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wide-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c1810;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c1810;
}

.benefit-card p {
    font-size: 16px;
    color: #555;
}

.product-selection {
    padding: 100px 20px;
    background-color: #f8f8f8;
}

.product-selection h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c1810;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.product-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px 20px;
    color: #2c1810;
}

.product-card p {
    margin: 0 20px 16px 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.product-price {
    font-size: 28px;
    font-weight: bold;
    color: #6b8e23;
    margin: 16px 20px;
}

.select-product {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 14px;
    background-color: #2c1810;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 80px 20px;
    background-color: #fff;
}

.form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c1810;
}

.form-section > div > p {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.scientific-references {
    padding: 60px 20px;
    background-color: #fafafa;
}

.scientific-references h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c1810;
}

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

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

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

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff8e1;
    border-top: 2px solid #ffd54f;
    border-bottom: 2px solid #ffd54f;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #2c1810;
    color: #fff;
    padding: 60px 20px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #d4a574;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a3428;
}

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

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

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #6b8e23;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #5a7a1e;
}

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

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

.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.header-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.header-content p {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 20px;
}

.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 260px;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #6b8e23;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c1810;
}

.value-item p {
    font-size: 15px;
    color: #555;
}

.cta-box {
    margin-top: 60px;
    padding: 50px;
    background-color: #2c1810;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #6b8e23;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #5a7a1e;
}

.products-showcase {
    padding: 80px 20px;
}

.intro-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.intro-text-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c1810;
}

.intro-text-center p {
    font-size: 18px;
    color: #555;
}

.product-info {
    padding: 20px;
}

.product-cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2c1810;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.product-cta:hover {
    background-color: #3d2817;
}

.info-section {
    max-width: 900px;
    margin: 60px auto 0 auto;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.info-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c1810;
}

.info-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.contact-page-section {
    padding: 80px 20px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: flex;
    gap: 50px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c1810;
}

.contact-info-block > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3d2817;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 20px;
}

.map-overlay p {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

.contact-additional-info {
    padding: 60px 20px;
    background-color: #fafafa;
}

.contact-additional-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c1810;
}

.info-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c1810;
}

.info-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #6b8e23;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px auto;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c1810;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 17px;
    color: #333;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.thanks-next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c1810;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2c1810;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3d2817;
}

.btn-secondary {
    background-color: #6b8e23;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a7a1e;
}

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c1810;
}

.legal-intro {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c1810;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #3d2817;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4a3428;
}

.legal-page p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 30px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.legal-page a {
    color: #1a73e8;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #888;
}

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

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

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

    .benefits-grid {
        flex-direction: column;
    }

    .benefit-card {
        flex: 1 1 100%;
    }

    .product-card {
        flex: 1 1 100%;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

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

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