/* Main Variables and Reset */
:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --secondary-color: #3498db;
    --secondary-dark: #2980b9;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 16px;
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--background-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-color);
}

h1 {
    font-size: 4.8rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 3.6rem;
    margin-bottom: 4rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
    color: var(--text-light);
}

/* Container and Grid */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 3rem;
}

/* Header and Navigation */
.main_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-white);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: transform var(--transition-fast);
}

.main_menu.scroll-up {
    transform: translateY(0);
}

.main_menu.scroll-down {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

.navbar-brand img {
    height: 4rem;
    margin-right: 1rem;
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

/* Navigation List */
.nav-list {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    padding: 16rem 0 8rem;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/favicon.ico') repeat;
    opacity: 0.05;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.hero h1 {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

/* Nutrition Info Section */
.nutrition-info {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.info-card {
    padding: 3rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.feature-card {
    text-align: center;
    padding: 4rem;
    background-color: var(--background-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Recommendations Section */
.recommendations {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.recommendation-card {
    padding: 3rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
}

.recommendation-card ul {
    list-style: none;
    margin-top: 2rem;
}

.recommendation-card li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.recommendation-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 1.6rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: var(--background-light);
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem;
    background-color: var(--background-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Footer Styles */
footer {
    background-color: var(--text-color);
    color: var(--background-white);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: var(--background-white);
    margin-bottom: 2rem;
}

.footer-links h4 {
    color: var(--background-white);
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--background-white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
    line-height: 2.5;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-newsletter h4 {
    color: var(--background-white);
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-color);
    padding: 2rem 0;
    transform: translateY(100%);
    animation: slideUp 0.5s ease forwards 1s;
    z-index: 1000;
}

.cookie-notice .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookie-notice p {
    color: var(--background-white);
    margin: 0;
}

.cookie-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    border-radius: var(--border-radius-small);
    transition: background-color var(--transition-fast);
}

.cookie-link:hover {
    background-color: var(--primary-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    border-radius: var(--border-radius-medium);
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 1.5rem;
}

.hamburger {
    width: 3rem;
    height: 0.3rem;
    background-color: var(--text-color);
    position: relative;
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 3rem;
    height: 0.3rem;
    background-color: var(--text-color);
    transition: all var(--transition-fast);
}

.hamburger::before {
    top: -0.8rem;
}

.hamburger::after {
    top: 0.8rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    html {
        font-size: 60%;
    }

    .features-grid,
    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Navigation Continuation */
@media screen and (max-width: 768px) {
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--background-white);
        padding-top: 8rem;
        transition: left var(--transition-medium);
        z-index: 900;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        font-size: 2rem;
        padding: 1.5rem;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background-color: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* Section Adjustments for Mobile */
    .hero {
        padding: 12rem 0 6rem;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero p {
        font-size: 1.8rem;
    }

    .features-grid,
    .recommendations-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 2rem;
    }
}

/* Additional Interactive Elements */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
    z-index: 1001;
}

/* Enhanced Card Interactions */
.info-card, .feature-card, .recommendation-card {
    position: relative;
    cursor: pointer;
}

.info-card::after,
.feature-card::after,
.recommendation-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

.info-card:hover::after,
.feature-card:hover::after,
.recommendation-card:hover::after {
    opacity: 1;
}

/* Smooth Scroll Behavior */
.smooth-scroll {
    scroll-behavior: smooth;
    overflow-y: auto;
    scroll-padding-top: 80px;
}

/* Loading State Animations */
.loading-state {
    position: relative;
    overflow: hidden;
}

.loading-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    from {
        left: -100%;
    }
    to {
        left: 200%;
    }
}

/* Enhanced Focus States */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Motion Reduced Preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Enhanced Interactive Elements */
.hover-lift {
    transition: transform var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Print Styles */
@media print {
    .main_menu,
    .cookie-notice,
    .cta-button,
    .footer-newsletter {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .container {
        width: 100%;
        max-width: none;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
    }

    p, li {
        page-break-inside: avoid;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.shadow-hover {
    transition: box-shadow var(--transition-fast);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-medium);
}

.text-balance {
    text-wrap: balance;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #006600;
        --secondary-color: #004080;
        --text-color: #000000;
        --text-light: #333333;
        --background-light: #ffffff;
    }

    .text-gradient {
        background: none;
        -webkit-text-fill-color: currentColor;
        color: var(--primary-color);
    }
}

/* Additional Animation Keyframes */
@keyframes pulseScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.pulse {
    animation: pulseScale 2s infinite;
}

.shimmer {
    background: linear-gradient(90deg,
    var(--background-light) 0%,
    var(--background-white) 50%,
    var(--background-light) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* Nutrient Synergy Circle Section */
.nutrient-circle {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #edf1f7 100%);
    overflow: hidden;
}

.circle-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    z-index: 2;
    overflow: hidden;
}

.core-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.orbital-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateOrbit 30s linear infinite;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
}

.nutrient-bubble {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: counterRotate 30s linear infinite;
}

.nutrient-bubble span {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    font-size: 1.4rem;
}

.orbit-1 { transform: translate(-50%, -50%) rotate(0deg) translateX(250px) rotate(0deg); }
.orbit-2 { transform: translate(-50%, -50%) rotate(72deg) translateX(250px) rotate(-72deg); }
.orbit-3 { transform: translate(-50%, -50%) rotate(144deg) translateX(250px) rotate(-144deg); }
.orbit-4 { transform: translate(-50%, -50%) rotate(216deg) translateX(250px) rotate(-216deg); }
.orbit-5 { transform: translate(-50%, -50%) rotate(288deg) translateX(250px) rotate(-288deg); }

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterRotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Interactive Benefits Cards */
.benefits-showcase {
    padding: 8rem 0;
    background: #fff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    position: relative;
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-back {
    background: var(--primary-color);
    transform: rotateY(180deg);
    color: #fff;
}

.benefit-card:hover .card-front {
    transform: rotateY(180deg);
}

.benefit-card:hover .card-back {
    transform: rotateY(360deg);
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.card-back ul {
    list-style: none;
    padding: 0;
}

.card-back li {
    margin: 1rem 0;
    text-align: center;
    font-size: 1.6rem;
}

/* Progress Path Section */
.progress-path {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.path-container {
    position: relative;
    padding: 4rem 0;
}

.path-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
    var(--primary-color) 0%,
    var(--primary-color) 25%,
    var(--primary-color) 50%,
    var(--primary-color) 75%,
    var(--primary-color) 100%
    );
    transform: translateY(-50%);
    z-index: 1;
}

.path-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    z-index: 2;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s;
}

.step-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.step-item:hover .step-circle {
    transform: scale(1.1);
    color: #fff;
}

.step-item:hover .step-circle::before {
    width: 100%;
    height: 100%;
    z-index: -1;
}

.step-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.step-item:hover .step-content {
    transform: translateY(-10px);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .circle-container {
        transform: scale(0.8);
        height: 500px;
    }

    .path-steps {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .path-line {
        height: 100%;
        width: 4px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 480px) {
    .circle-container {
        transform: scale(0.6);
        height: 400px;
    }
}

/* Nutrient Hexagon Section */
.nutrient-hexagon {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #edf1f7 100%);
    overflow: hidden;
}

.hexagon-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
}

.center-hex {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 140px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.center-hex span {
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.4;
}

.outer-hex-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateHexagons 30s linear infinite;
}

.hex-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 115px;
    margin: -57.5px 0 0 -50px;
}

.hex-content {
    width: 100%;
    height: 100%;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hex-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.omega { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
.vitamin { background: linear-gradient(135deg, #FF9800, #F57C00); }
.mineral { background: linear-gradient(135deg, #2196F3, #1976D2); }
.protein { background: linear-gradient(135deg, #9C27B0, #7B1FA2); }
.antioxidant { background: linear-gradient(135deg, #F44336, #D32F2F); }
.enzyme { background: linear-gradient(135deg, #00BCD4, #0097A7); }

.hex-content span {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.hex-details {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 150px;
    text-align: center;
    z-index: 3;
}

.hex-item:hover .hex-content {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hex-item:hover .hex-details {
    opacity: 1;
    visibility: visible;
    top: 120%;
}

/* Progress Waves Section */
.progress-waves {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.waves-container {
    position: relative;
    padding: 4rem 0;
}

.wave-steps {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.wave-step {
    flex: 1;
    max-width: 300px;
    position: relative;
    padding: 2rem;
}

.wave-marker {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto 2rem;
}

.wave-dot {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.wave-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.wave-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.wave-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.wave-details ul {
    list-style: none;
    padding: 0;
}

.wave-details li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.wave-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.wave-step:hover .wave-dot {
    transform: scale(1.2);
}

.wave-step:hover .wave-content {
    transform: translateY(-10px);
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(76, 175, 80, 0.1) 50%);
    animation: waveMove 10s linear infinite;
}

.wave2 {
    animation-delay: -5s;
    opacity: 0.5;
}

.wave3 {
    animation-delay: -2.5s;
    opacity: 0.2;
}

@keyframes waveMove {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.8);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    70% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes rotateHexagons {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hexagon-container {
        transform: scale(0.8);
        height: 500px;
    }

    .wave-steps {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .wave-step {
        width: 100%;
    }

    .wave-animation {
        height: 150px;
    }
}

@media screen and (max-width: 480px) {
    .hexagon-container {
        transform: scale(0.6);
        height: 400px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    color: var(--text-color);
    font-size: 1.8rem;
}

.form-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 4rem;
    overflow: hidden;
}

/* Decorative Elements */
.form-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.circle-decor {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.1;
}

.wave-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 70%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    opacity: 0.05;
}

.hex-decor {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, var(--secondary-color) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.1;
}

/* Form Styles */
.contact-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2.5rem;
}

/* Input Styles */
.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input,
.textarea-wrapper textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    z-index: 1;
}

.input-wrapper label,
.textarea-wrapper label {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 0.5rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.textarea-wrapper label {
    top: 2.5rem;
}

.input-highlight,
.textarea-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.input-wrapper input:focus,
.textarea-wrapper textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.1);
}

.input-wrapper input:focus + label,
.textarea-wrapper textarea:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.textarea-wrapper textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.input-wrapper input:focus ~ .input-highlight,
.textarea-wrapper textarea:focus ~ .textarea-highlight {
    width: calc(100% - 2.4rem);
}

/* Select Styles */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.6rem;
    appearance: none;
    background: transparent;
    cursor: pointer;
    color: #666;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary-color);
    pointer-events: none;
}

.select-wrapper select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.1);
}

/* Checkbox Styles */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-wrapper input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.4rem;
}

.checkbox-wrapper label {
    font-size: 1.4rem;
    color: #666;
}

.checkbox-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Submit Button */
.submit-btn {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.btn-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.submit-btn:hover .btn-decoration {
    width: 300px;
    height: 300px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .form-container {
        padding: 2rem;
        margin: 0 1.5rem;
    }

    .section-desc {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .form-container {
        padding: 1.5rem;
    }

    .submit-btn {
        font-size: 1.6rem;
    }
}

/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #edf1f7 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 4.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-text p {
    font-size: 2rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transform: translateX(50px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards 0.5s;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.hero-image:hover .main-image {
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    padding: 8rem 0;
    background: var(--background-white);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.mission-card {
    background: var(--background-light);
    padding: 3rem;
    border-radius: var(--border-radius-medium);
    text-align: center;
    transition: transform var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    font-size: 3rem;
    transition: transform var(--transition-fast);
}

.mission-card:hover .card-icon {
    transform: rotateY(180deg);
}

/* Expertise Section */
.expertise-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.expertise-item {
    background: var(--background-white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    transition: transform var(--transition-fast);
    box-shadow: var(--shadow-light);
}

.expertise-content {
    padding: 3rem;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.expertise-details {
    margin-top: 2rem;
}

.expertise-details ul {
    list-style: none;
    margin-top: 1.5rem;
}

.expertise-details li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.expertise-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: var(--background-white);
}

.values-hexagon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-item {
    position: relative;
    padding-top: 100%;
}

.value-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform var(--transition-fast);
}

.value-item:hover .value-content {
    transform: scale(1.05);
}

.value-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-content p {
    max-width: 80%;
    margin: 0 auto;
}



/* Animations Continuation */
@keyframes slideInLeft {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Mission Icons */
.mission-icon-1,
.mission-icon-2,
.mission-icon-3 {
    position: relative;
    background: var(--primary-color);
}

.mission-icon-1::after,
.mission-icon-2::after,
.mission-icon-3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.mission-card:hover .mission-icon-1::after,
.mission-card:hover .mission-icon-2::after,
.mission-card:hover .mission-icon-3::after {
    opacity: 1;
}

/* Enhanced Card Interactions */
.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
    transparent 0%,
    rgba(255,255,255,0.1) 50%,
    transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.expertise-item:hover::before {
    transform: translateX(100%);
}

/* Value Hexagons Enhanced */
.value-content::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle at center,
    var(--primary-color) 0%,
    transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.value-item:hover .value-content::before {
    opacity: 0.1;
}

/* Responsive Design Adjustments */
@media screen and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 3.6rem;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .values-hexagon {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .mission-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .values-hexagon {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .value-item {
        padding-top: 120%;
    }
}

/* Interactive Elements Enhancement */
.expertise-details li {
    transform: translateX(-20px);
    opacity: 0;
    transition: all var(--transition-fast);
}

.expertise-item:hover .expertise-details li {
    transform: translateX(0);
    opacity: 1;
}

.expertise-item:hover .expertise-details li:nth-child(1) {
    transition-delay: 0.1s;
}

.expertise-item:hover .expertise-details li:nth-child(2) {
    transition-delay: 0.2s;
}

.expertise-item:hover .expertise-details li:nth-child(3) {
    transition-delay: 0.3s;
}

/* Enhanced Typography */
.expertise-content h3 {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.expertise-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

.expertise-item:hover .expertise-content h3::after {
    width: 100px;
}

/* Focus States */
.value-content:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .about-hero {
        padding: 2rem 0;
    }

    .hero-image,
    .mission-cards,
    .expertise-grid,
    .values-hexagon {
        break-inside: avoid;
    }

    .mission-card,
    .expertise-item,
    .value-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .footer-links,
    .nav-toggle,
    .nav-toggle-label {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .mission-card,
    .expertise-item,
    .value-content {
        border: 2px solid var(--text-color);
    }

    .expertise-details li::before {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-text h1,
    .hero-text p,
    .hero-image,
    .mission-card,
    .expertise-item,
    .value-content {
        animation: none;
        transition: none;
    }
}

/* Team Section Styles */
.team-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right,
    rgba(46, 204, 113, 0.1) 0%,
    transparent 60%);
    pointer-events: none;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
    font-size: 1.8rem;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

/* Team Member Card */
.team-member {
    background: var(--background-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

/* Member Photo */
.member-photo {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.team-member:hover .photo-overlay {
    opacity: 1;
}

/* Member Info */
.member-info {
    padding: 2.5rem;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

.team-member:hover .member-info::before {
    width: 100px;
}

.member-info h3 {
    font-size: 2.4rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.member-details {
    color: var(--text-light);
}

.member-details p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Member Expertise List */
.member-expertise {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-expertise li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    transform: translateX(-20px);
    opacity: 0;
    transition: all var(--transition-fast);
}

.member-expertise li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
}

.team-member:hover .member-expertise li {
    transform: translateX(0);
    opacity: 1;
}

.team-member:hover .member-expertise li:nth-child(1) {
    transition-delay: 0.1s;
}

.team-member:hover .member-expertise li:nth-child(2) {
    transition-delay: 0.2s;
}

.team-member:hover .member-expertise li:nth-child(3) {
    transition-delay: 0.3s;
}

/* Team CTA Section */
.team-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--background-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
}

.team-cta p {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .member-photo {
        padding-top: 75%;
    }
}

/* Accessibility Enhancements */
.team-member:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .team-member {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .photo-overlay {
        display: none;
    }

    .team-cta {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .team-member {
        border: 2px solid var(--text-color);
    }

    .member-role {
        color: var(--text-color);
        font-weight: bold;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .team-member,
    .member-photo img,
    .photo-overlay,
    .member-expertise li {
        transition: none;
        animation: none;
    }
}

/* Blog Page Styles */
.blog-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #edf1f7 100%);
    text-align: center;
}

.blog-hero h1 {
    font-size: 4.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.blog-subtitle {
    font-size: 2rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

/* Article Styles */
.blog-article {
    padding: 6rem 0;
    background: var(--background-white);
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.article-header h2 {
    font-size: 3.6rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-light);
    font-size: 1.6rem;
}

.article-meta span {
    position: relative;
}

.article-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -1.2rem;
}

/* Featured Image */
.article-featured-image {
    margin-bottom: 4rem;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.article-featured-image:hover img {
    transform: scale(1.02);
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h3 {
    font-size: 2.4rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.content-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Nutrition Grid */
.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.nutrition-card {
    padding: 3rem;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
}

.nutrition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.nutrition-card.beneficial {
    background: linear-gradient(135deg, #f6ffed 0%, #e6f7ff 100%);
    border-left: 4px solid var(--primary-color);
}

.nutrition-card.avoid {
    background: linear-gradient(135deg, #fff2e8 0%, #ffedf2 100%);
    border-left: 4px solid #ff4d4f;
}

.nutrition-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.nutrition-card ul {
    list-style: none;
    padding: 0;
}

.nutrition-card li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.5s ease forwards;
}

.nutrition-card li:nth-child(1) { animation-delay: 0.1s; }
.nutrition-card li:nth-child(2) { animation-delay: 0.2s; }
.nutrition-card li:nth-child(3) { animation-delay: 0.3s; }
.nutrition-card li:nth-child(4) { animation-delay: 0.4s; }

.nutrition-card li strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.nutrition-card li p {
    color: var(--text-light);
    font-size: 1.4rem;
    margin: 0;
}

/* Recommendations List */
.recommendations-list {
    display: grid;
    gap: 2rem;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius-medium);
    transition: transform var(--transition-fast);
}

.recommendation-item:hover {
    transform: translateX(10px);
}

.recommendation-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
}

.recommendation-item p {
    margin: 0;
    font-size: 1.6rem;
}

/* Article CTA */
.article-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #edf1f7 100%);
    border-radius: var(--border-radius-large);
}

.article-cta p {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design Continuation */
@media screen and (max-width: 768px) {
    .blog-hero h1 {
        font-size: 3.2rem;
    }

    .blog-subtitle {
        font-size: 1.8rem;
    }

    .article-header h2 {
        font-size: 2.8rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .article-meta span::after {
        display: none;
    }

    .content-section h3 {
        font-size: 2rem;
    }

    .recommendation-item {
        padding: 1.5rem;
    }

    .article-cta {
        padding: 2rem;
    }
}

/* Enhanced Typography */
.article-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.article-content strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Enhanced Interactive Elements */
.recommendation-item {
    position: relative;
    overflow: hidden;
}

.recommendation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.recommendation-item:hover::before {
    transform: translateX(100%);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1000;
}

/* Enhanced Card Interactions */
.nutrition-card {
    position: relative;
}

.nutrition-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.8) 0%,
            transparent 70%
    );
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

.nutrition-card:hover::after {
    opacity: 1;
}

/* Print Styles */
@media print {
    .blog-hero {
        padding: 2rem 0;
    }

    .article-featured-image {
        max-width: 500px;
        margin: 2rem auto;
    }

    .nutrition-grid {
        break-inside: avoid;
    }

    .nutrition-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .recommendation-item {
        break-inside: avoid;
        background: none;
        border: 1px solid #ddd;
    }

    .article-cta {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .nutrition-card.beneficial {
        background: white;
        border: 2px solid var(--primary-color);
    }

    .nutrition-card.avoid {
        background: white;
        border: 2px solid #ff4d4f;
    }

    .recommendation-item {
        background: white;
        border: 2px solid var(--text-color);
    }

    .recommendation-number {
        border: 2px solid var(--text-color);
    }
}

/* Reading Time Indicator */
.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius-small);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.reading-time::before {
    content: '⏱';
    font-size: 1.6rem;
}

/* Table of Contents */
.article-toc {
    position: sticky;
    top: 100px;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius-medium);
    margin-bottom: 2rem;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-item {
    margin-bottom: 1rem;
}

.toc-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 1.4rem;
}

.toc-link:hover {
    color: var(--primary-color);
}

/* Enhanced Focus States */
.nutrition-card:focus-within,
.recommendation-item:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .nutrition-card li,
    .recommendation-item,
    .article-featured-image img {
        animation: none;
        transition: none;
    }

    .nutrition-card::after,
    .recommendation-item::before {
        display: none;
    }
}

/* Article Share Button */
.share-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--background-light);
    border: none;
    border-radius: var(--border-radius-medium);
    color: var(--text-color);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.share-button:hover {
    background: var(--primary-color);
    color: white;
}

/* Thank You Page Styles */
.thank-you-content {
    text-align: center;
    padding: 8rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: var(--background-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.success-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 15px;
    border: 4px solid white;
    border-top: 0;
    border-right: 0;
    transform: translate(-50%, -60%) rotate(-45deg);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.return-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.5rem 3rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-medium);
    transition: all 0.3s ease;
}

.return-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    color: white;
    margin: 0;
}

.btn-light {
    background: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .text-md-end {
        text-align: center;
    }

    .cookie-banner p {
        margin-bottom: 1rem;
    }
}