* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    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 {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b5a8e;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #8b5a8e;
}

.hero-funnel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #f8e7f0;
}

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

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-text-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #34495e;
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.inline-image-wrapper {
    margin: 50px 0;
    background-color: #f8e7f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.reference-link {
    color: #8b5a8e;
    text-decoration: none;
    font-weight: 600;
}

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

.highlight-box {
    background-color: #fff5f9;
    border-left: 4px solid #8b5a8e;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.highlight-box strong {
    color: #8b5a8e;
}

.product-reveal-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.centered-heading {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto 60px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f8e7f0;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-info p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ingredients-list {
    list-style: none;
    margin-bottom: 25px;
}

.ingredients-list li {
    font-size: 14px;
    color: #7f8c8d;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.ingredients-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5a8e;
    font-weight: bold;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b5a8e;
    margin-bottom: 20px;
}

.btn-select-product {
    width: 100%;
    padding: 14px 28px;
    background-color: #8b5a8e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-product:hover {
    background-color: #6d4570;
}

.btn-select-product.selected {
    background-color: #27ae60;
}

.btn-select-product.selected:hover {
    background-color: #229954;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.testimonial-text {
    font-size: 18px;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #34495e;
    margin-bottom: 50px;
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5a8e;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.disclaimer-box {
    background-color: #fff5e6;
    border: 1px solid #f39c12;
    border-radius: 8px;
    padding: 30px;
}

.disclaimer-box h3 {
    font-size: 22px;
    color: #e67e22;
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #ffffff;
}

.references-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #34495e;
}

.references-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.references-list li {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.6;
}

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.page-subtitle {
    font-size: 20px;
    color: #34495e;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-section,
.services-hero,
.contact-hero {
    padding: 80px 0 60px;
    background-color: #f8e7f0;
}

.about-content-section,
.services-list-section,
.services-info-section,
.contact-content-section {
    padding: 80px 0;
}

.about-text-block {
    margin-bottom: 50px;
}

.about-text-block h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text-block p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image-block {
    margin: 60px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8e7f0;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 20px;
    color: #8b5a8e;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.services-info-section {
    background-color: #f9f9f9;
}

.services-info-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.services-info-section p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-block,
.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #8b5a8e;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

.contact-image-block {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8e7f0;
}

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

.contact-faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-faq-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-info-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info-box h3 {
    font-size: 24px;
    color: #8b5a8e;
    margin-bottom: 20px;
}

.thanks-steps {
    list-style: none;
    padding-left: 0;
}

.thanks-steps li {
    font-size: 16px;
    color: #34495e;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

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

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

.btn-primary {
    background-color: #8b5a8e;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6d4570;
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

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

.thanks-contact {
    font-size: 16px;
    color: #7f8c8d;
}

.legal-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 30px;
}

.legal-section h3 {
    font-size: 22px;
    color: #34495e;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #8b5a8e;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cookies-table thead {
    background-color: #8b5a8e;
    color: #ffffff;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookies-table th {
    font-weight: 600;
    font-size: 15px;
}

.cookies-table td {
    font-size: 14px;
    color: #34495e;
}

.cookies-table tbody tr:hover {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .page-title {
        font-size: 32px;
    }

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

    .story-content h2,
    .insight-section h2,
    .testimonials-section h2,
    .form-section h2 {
        font-size: 28px;
    }

    .centered-heading {
        font-size: 28px;
    }

    .products-grid {
        gap: 30px;
    }

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

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

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}