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

:root {
    --primary-color: #E53935;
    --primary-dark: #C62828;
    --primary-light: #EF5350;
    --secondary-color: #FF6B6B;
    --accent-color: #FF9800;
    --accent-bright: #FFB74D;
    --accent-pink: #FF6B9D;
    --accent-blue: #42A5F5;
    --text-dark: #2C1810;
    --text-light: #5D4037;
    --bg-light: #FFF5F5;
    --bg-white: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #FFEBEE 0%, #FFF3E0 100%);
    --border-color: #FFCDD2;
    --shadow-soft: 0 4px 20px rgba(229, 57, 53, 0.15);
    --shadow-medium: 0 8px 30px rgba(229, 57, 53, 0.2);
    --shadow-bright: 0 12px 40px rgba(255, 152, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #E53935 0%, #FF6B6B 100%);
    --gradient-bright: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
    --gradient-soft: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(255, 107, 107, 0.08) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    --gradient-disclaimer: linear-gradient(135deg, #FF6B6B 0%, #E53935 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    color: var(--text-dark);
}

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: var(--primary-dark);
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: var(--gradient-disclaimer);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
    animation: slideDown 0.5s ease;
}

.disclaimer-banner.hidden {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.disclaimer-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.disclaimer-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.6;
}

.disclaimer-text strong {
    font-weight: 700;
    font-size: 14px;
}

.disclaimer-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.disclaimer-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 60px;
    z-index: 999;
}

.header.with-disclaimer {
    top: 60px;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%236B9F78" opacity="0.1"/></svg>');
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badges-top {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
}

.hero-badge-secondary {
    display: inline-block;
    background: var(--gradient-bright);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-bright);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-badge {
    background: var(--bg-white);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 20px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ingredients-intro-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.intro-badge {
    background: var(--accent-blue);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(66, 165, 245, 0.3);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-badge {
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 10px;
    font-style: italic;
}

/* Product Section */
.product-section {
    padding: 100px 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.product-image-wrapper {
    position: sticky;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.benefit-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-light);
}

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

.product-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--bg-white);
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.product-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: contain;
    background: var(--bg-gradient);
}

.product-badge-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.product-badge-new {
    background: var(--gradient-bright);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-bright);
    animation: pulse 2s infinite;
}

.product-badge-popular {
    background: var(--accent-pink);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.product-image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.gallery-image:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-badges-top {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.info-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

.product-info h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.product-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.highlight-icon {
    font-size: 24px;
}

.highlight-text {
    color: var(--text-dark);
    font-size: 15px;
}

/* Ingredients Section */
.ingredients-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.ingredients-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
    pointer-events: none;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.ingredients-grid .ingredient-card:nth-child(1),
.ingredients-grid .ingredient-card:nth-child(2) {
    grid-column: span 1;
}

.ingredients-grid .ingredient-card:nth-child(3) {
    grid-column: span 1;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ingredient-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.featured-ingredient {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.ingredient-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-bright);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.ingredient-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.ingredient-card:hover::before {
    transform: scaleX(1);
}

.ingredient-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.ingredient-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.ingredient-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.ingredients-note {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 40px;
}

.ingredients-note p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: var(--primary-light);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--accent-color);
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-light);
    font-size: 14px;
}

/* Research Section */
.research-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.research-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
}

.research-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.research-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
}

.research-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.research-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.placeholder-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.research-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.research-card {
    text-align: left;
}

.research-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: color 0.3s;
}

.research-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.research-image-section {
    margin-top: 50px;
    text-align: center;
}

.research-main-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 20px;
}

.research-image-caption {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.research-image-caption p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.research-hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.research-link-hidden {
    display: block;
    width: 1px;
    height: 1px;
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.footer-research-links {
    list-style: none;
    margin-top: 10px;
}

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

.footer-research-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
    display: inline-block;
}

.footer-research-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-description {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Additional Info Section */
.additional-info-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Order Form Section */
.order-section {
    padding: 100px 0;
    background: var(--bg-gradient);
    position: relative;
}

.order-form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.order-form-container {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--border-color);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-form .form-group {
    display: flex;
    flex-direction: column;
}

.order-form label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.order-form input,
.order-form select,
.order-form textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg-white);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.order-form textarea {
    resize: vertical;
    min-height: 100px;
}

.order-form .checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.order-form .checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
    cursor: pointer;
}

.order-form .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
}

.order-form .checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.order-form .checkbox-group a:hover {
    text-decoration: underline;
}

.order-submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: var(--shadow-medium);
}

.order-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 57, 53, 0.3);
}

.order-submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.order-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.order-message {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    display: none;
    animation: slideIn 0.5s ease;
}

.order-message.show {
    display: block;
}

.order-message.success {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.order-message.error {
    background: linear-gradient(135deg, #E53935 0%, #FF6B6B 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.order-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.order-info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.order-info-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.order-info-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Legal Info Section */
.legal-info-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.legal-info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-info-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-info-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.legal-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
}

.legal-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.legal-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.legal-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.legal-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.legal-item p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 14px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
/* Page Section Styles */
.page-section {
    padding: 100px 0;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.page-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.content-block h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 20px;
    font-weight: 600;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.content-block ul {
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-block ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.content-block a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
    margin: 20px auto 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    text-align: center;
}

.form-message.success {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.contact-info-card .info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 8px;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.cookies-table thead {
    background: var(--gradient-primary);
    color: white;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

.cookies-table td {
    color: var(--text-light);
    font-size: 14px;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

.cookies-table tbody tr:hover {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 30px 20px;
        box-shadow: var(--shadow-medium);
        transition: left 0.3s;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

    .section-title {
        font-size: 28px;
    }

    .product-content {
        grid-template-columns: 1fr;
    }

    .product-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .ingredients-intro-badges,
    .testimonials-stats {
        flex-direction: column;
        align-items: center;
    }

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

    .product-image-wrapper {
        position: relative;
        top: 0;
    }

    .product-content {
        grid-template-columns: 1fr;
    }

    .order-form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .research-placeholder {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-value {
        font-size: 36px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .page-content {
        padding: 30px 20px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

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

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

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        padding: 60px 0;
    }

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

    .section-title {
        font-size: 24px;
    }

    .product-section,
    .ingredients-section,
    .testimonials-section,
    .research-section,
    .additional-info-section,
    .stats-section,
    .order-section,
    .page-section {
        padding: 60px 0;
    }

    .order-form-container {
        padding: 30px 20px;
    }

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

    .product-benefits {
        grid-template-columns: 1fr;
    }

    .hero-features {
        gap: 10px;
    }

    .feature-badge {
        padding: 10px 18px;
        font-size: 12px;
    }

    .page-content {
        padding: 25px 15px;
    }

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

    .content-block h2 {
        font-size: 22px;
    }

    .content-block h3 {
        font-size: 18px;
    }
}

