* {
    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: #f8f9fa;
}

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

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

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

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

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

.hero-card {
    background-color: #ffffff;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding: 60px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.2;
}

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

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro-cards {
    padding: 80px 0;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.info-card p {
    color: #666;
    line-height: 1.7;
}

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

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 15px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.benefits-cards {
    padding: 80px 0;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-card h3 {
    padding: 25px 25px 10px 25px;
    font-size: 22px;
    color: #2c3e50;
}

.benefit-card p {
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.7;
}

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

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

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

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

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.ingredients-section {
    padding: 80px 0;
}

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

.ingredients-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.ingredient-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.ingredient-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.ingredient-card ul {
    list-style-position: inside;
    color: #666;
}

.ingredient-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 17px;
    color: #666;
}

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

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 20px 10px 20px;
    font-size: 20px;
    color: #2c3e50;
}

.product-card p {
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.product-price {
    padding: 15px 20px;
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 12px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #c0392b;
}

.form-section {
    padding: 80px 0;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.selected-product {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #555;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #e74c3c;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #ffc107;
}

.disclaimer-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.references-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
}

.references-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

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

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

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.footer-col p {
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #e74c3c;
}

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

.footer-bottom p {
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -5px 20px 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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin: 0;
}

.about-intro {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text-main {
    flex: 1;
    min-width: 300px;
}

.about-text-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text-main p {
    margin-bottom: 20px;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.about-image-main {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 15px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 240px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    border-top: 4px solid #e74c3c;
}

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

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
}

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

.team-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.team-image {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ecf0f1;
    border-radius: 15px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.mission-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-page-intro {
    padding: 60px 0;
    text-align: center;
}

.services-page-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-page-intro p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

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

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

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

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

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-page {
    padding: 120px 0;
    text-align: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-card .order-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.thanks-card .order-summary strong {
    color: #2c3e50;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-date {
    font-style: italic;
    color: #95a5a6;
    margin-bottom: 30px;
}

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

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

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

.why-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid #27ae60;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

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

.business-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    border-left: 5px solid #3498db;
}

.business-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.business-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-text {
        padding: 40px 30px;
    }

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

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

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

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

    .page-header h1 {
        font-size: 36px;
    }

    .mission-card {
        padding: 40px 30px;
    }
}