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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.advertorial {
    text-align: center;
    padding: 20px 0;
    font-size: 26px;
    font-weight: bold;
    background-color: #f3f4f6;
    border-bottom: 1px solid #d1d5db;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.875rem;
    font-weight: 700;
    color: #059669;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: #047857;
}

.nav-link {
    color: #065f46;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #059669;
}

.hero {
    background: linear-gradient(to bottom right, #d1fae5, #dbeafe);
    border-bottom: 4px solid #059669;
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-bg {
    background-color: #a7f3d0;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.8;
}

.benefits-section {
    background: linear-gradient(to bottom right, #d1fae5, #ffffff);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    font-size: 1.25rem;
    color: #1f2937;
}

.benefits-list li {
    margin-bottom: 1rem;
}

.benefits-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.review-section {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
}

.review-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #dbeafe, #d1fae5);
    opacity: 0.5;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.review-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.review-content {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.review-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-list {
    list-style: none;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
}

.review-list li {
    margin-bottom: 1rem;
}

.foods-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.foods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.food-card {
    background: linear-gradient(to bottom right, #d1fae5, #dbeafe);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.food-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.food-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.food-line {
    height: 4px;
    background-color: #059669;
    width: 6rem;
    margin-bottom: 1.5rem;
}

.food-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.food-description {
    color: #374151;
    line-height: 1.7;
}

.stats-section {
    background: linear-gradient(to bottom right, #d1fae5, #ffffff);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stats-content {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stats-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.stats-list {
    list-style: none;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
}

.stats-list li {
    margin-bottom: 1rem;
}

.stats-image-wrapper {
    position: relative;
}

.stats-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #059669, #2563eb);
    border-radius: 1rem;
    transform: rotate(3deg);
}

.stats-image {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.recommendations-section {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
}

.recommendations-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #2563eb, #059669);
    opacity: 0.1;
}

.recommendations-box {
    background: linear-gradient(to bottom right, #a7f3d0, #bfdbfe);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
}

.recommendations-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.recommendations-text {
    font-size: 1.125rem;
    color: #1f2937;
    line-height: 1.7;
}

.recommendations-text p {
    margin-bottom: 1rem;
}

.recommendations-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-section {
    background: linear-gradient(to bottom right, #d1fae5, #dbeafe);
    padding: 4rem 0;
    border-top: 4px solid #059669;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.product-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    border: 4px solid #059669;
}

.product-info-box {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-description {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

.product-text {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-price-box {
    background: linear-gradient(to right, #059669, #2563eb);
    color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.product-price {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 0.875rem;
    opacity: 0.9;
}

.composition-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.composition-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.composition-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.composition-item {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-left: 4px solid #059669;
    transition: box-shadow 0.3s;
}

.composition-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.composition-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.composition-line {
    height: 2px;
    background-color: #059669;
    width: 100%;
    margin-top: 1rem;
}

.contact-section {
    background: linear-gradient(to bottom right, #d1fae5, #dbeafe);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    border: 4px solid #059669;
}

.contact-product-image {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.contact-icon {
    background-color: #059669;
    color: #ffffff;
    border-radius: 50%;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
}

.contact-form-wrapper {
    background: linear-gradient(to bottom right, #059669, #2563eb);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.contact-form-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-bottom: 2px solid #ffffff;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
}

.form-button {
    width: 100%;
    background-color: #ffffff;
    color: #059669;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-button:hover {
    background-color: #d1fae5;
}

.footer {
    background-color: #111827;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-contact {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: #34d399;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav-link:hover {
    color: #6ee7b7;
    text-decoration: underline;
}

.footer-legal {
    background-color: #1f2937;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #374151;
}

.footer-legal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #34d399;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-legal-info {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-legal-info p {
    margin-bottom: 0.5rem;
}

.footer-legal-info strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-warning-title {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-research {
    margin-top: 1rem;
}

.research-title {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.research-link {
    color: #34d399;
    text-decoration: underline;
    display: block;
    word-break: break-all;
}

.research-link:hover {
    color: #6ee7b7;
}

@media (max-width: 768px) {
    .hero-grid,
    .benefits-grid,
    .review-grid,
    .stats-grid,
    .recommendations-grid,
    .product-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .foods-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-image {
        height: 300px;
    }

    .benefits-image,
    .review-image,
    .stats-image,
    .recommendations-image {
        height: 300px;
    }

    .product-main-image {
        height: 300px;
    }

    .contact-product-image {
        max-height: 300px;
    }

    .recommendations-box {
        padding: 2rem 1rem;
    }

    .recommendations-title {
        font-size: 1.75rem;
    }

    .composition-title,
    .product-main-title {
        font-size: 1.75rem;
    }

    .contact-icon {
        padding: 1.5rem;
    }

    .contact-icon svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .benefits-title {
        font-size: 1.25rem;
    }

    .review-title,
    .stats-title {
        font-size: 1.5rem;
    }

    .food-title {
        font-size: 1.125rem;
    }

    .advertorial {
        font-size: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

.legal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-content {
    flex: 1;
    background: linear-gradient(to bottom right, #f9fafb, #ffffff);
    padding: 4rem 0;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 2rem;
}

.legal-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    max-width: 900px;
    margin: 0 auto;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text strong {
    color: #059669;
    font-weight: 600;
}
