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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #fefefe;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2d3436;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #636e72;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 80px 30px;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2d3436;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #2d3436;
}

.cta-button {
    display: inline-block;
    background-color: #6c5ce7;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #5f4dd4;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-color: #fdcb6e;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    object-fit: cover;
}

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

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d3436;
    text-align: center;
}

.story-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #636e72;
}

.insight-card {
    background-color: #dfe6e9;
    padding: 25px;
    border-radius: 10px;
    margin-top: 35px;
    border-left: 4px solid #6c5ce7;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #2d3436;
    margin: 0;
}

.insight-card a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 500;
}

.insight-card a:hover {
    text-decoration: underline;
}

.benefits-grid {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

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

.benefits-grid h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

.cards-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0;
    flex: 0 1 calc(33.333% - 20px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

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

.benefit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.benefit-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px 20px;
    color: #2d3436;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #636e72;
    margin: 0 20px 20px 20px;
}

.ingredients-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.ingredients-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2d3436;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ingredient-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid #fdcb6e;
}

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

.ingredient-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
    margin: 0;
}

.ingredient-item a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 500;
}

.ingredient-item a:hover {
    text-decoration: underline;
}

.products-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

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

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

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    flex: 0 1 calc(33.333% - 20px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    width: 100%;
    height: 300px;
    background-color: #dfe6e9;
    overflow: hidden;
}

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

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.product-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #636e72;
    margin-bottom: 20px;
    flex: 1;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.volume {
    font-size: 14px;
    color: #636e72;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #6c5ce7;
}

.select-service-btn {
    background-color: #6c5ce7;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background-color: #5f4dd4;
    transform: translateY(-2px);
}

.select-service-btn.selected {
    background-color: #00b894;
}

.testimonials-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #fdcb6e;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3436;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card .author {
    font-size: 15px;
    color: #636e72;
    font-weight: 500;
}

.form-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

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

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    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: #6c5ce7;
}

.submit-btn {
    background-color: #6c5ce7;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #5f4dd4;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 50px 30px;
    background-color: #f8f9fa;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.7;
    color: #636e72;
    text-align: center;
}

.footer {
    background-color: #2d3436;
    color: #dfe6e9;
    padding: 60px 30px 30px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

.reference-item {
    font-size: 13px;
    margin-bottom: 5px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-btn.accept {
    background-color: #00b894;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #00a383;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: #636e72;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4d5659;
    transform: translateY(-2px);
}

.contact-page {
    padding: 80px 30px;
    background-color: #ffffff;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #2d3436;
}

.contact-content {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2d3436;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d3436;
}

.info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #636e72;
}

.about-page {
    padding: 80px 30px;
    background-color: #ffffff;
}

.about-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
    color: #2d3436;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #636e72;
}

.about-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    border-radius: 12px;
    background-color: #dfe6e9;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.services-page {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.services-page h1 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2d3436;
}

.legal-page {
    padding: 80px 30px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
    color: #2d3436;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #2d3436;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2d3436;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #636e72;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #636e72;
}

.legal-content li {
    margin-bottom: 8px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d3436;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 30px;
}

.thanks-content .home-btn {
    display: inline-block;
    background-color: #6c5ce7;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.thanks-content .home-btn:hover {
    background-color: #5f4dd4;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .cards-row,
    .products-grid {
        flex-direction: column;
    }

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

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

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

    .nav-links {
        gap: 20px;
    }

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