:root {
    --primary-color: #4CAF50;
    --secondary-color: #45a049;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main_menu {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.navbar-brand img {
    height: 40px;
}

.nav-toggle {
    display: none;
}

.nav-wrapper {
    display: flex;
    gap: 30px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    margin-top: var(--header-height);
    background: linear-gradient(rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Features Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff, var(--light-bg));
}

.benefits h2,
.nutrition-guide h2,
.features h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-desc {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 40px;
    font-size: 1.1em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card img {
    margin-bottom: 20px;
}

.nutrition-guide {
    padding: 80px 0;
    background: white;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.guide-item {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.guide-item img {
    margin-bottom: 20px;
}

.guide-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.guide-item li {
    margin: 10px 0;
    color: var(--text-color);
}

.features {
    padding: 80px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card h3 {
    color: var(--primary-color);
    margin: 20px 0;
}

/* Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    line-height: 2;
}

.cookies-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
}

.cookies-notice a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .benefits-grid,
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card,
    .guide-item {
        max-width: 400px;
        margin: 0 auto;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .section-desc {
        font-size: 1em;
        padding: 0 20px;
    }
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
    }

    .hamburger {
        width: 30px;
        height: 3px;
        background: var(--text-color);
        position: relative;
        transition: all 0.3s;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 3px;
        background: var(--text-color);
        transition: all 0.3s;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        top: 8px;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding-top: var(--header-height);
        transition: all 0.3s;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: 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;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Root Variables */
:root {
    --primary-color: #4CAF50;
    --primary-light: #81C784;
    --primary-dark: #388E3C;
    --secondary-color: #FFA726;
    --secondary-light: #FFB74D;
    --secondary-dark: #F57C00;
    --text-primary: #212121;
    --text-secondary: #757575;
    --background-light: #F5F5F5;
    --background-white: #FFFFFF;
    --success-color: #66BB6A;
    --info-color: #29B6F6;
    --warning-color: #FFA726;
    --error-color: #EF5350;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
    --header-height: 70px;
    --content-width: 1200px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.main_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: transform var(--transition-speed);
}

.main_menu.hide {
    transform: translateY(-100%);
}

.navbar {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand img {
    height: 40px;
    transition: transform var(--transition-speed);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navigation */
.nav-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all var(--transition-speed);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 80%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 1rem;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    position: relative;
    transition: all var(--transition-speed);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-speed);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero {
    margin-top: var(--header-height);
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--background-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/favicon.ico');
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--background-white);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.benefit-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);
    transform-origin: left;
    transition: transform var(--transition-speed);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-speed);
}

.benefit-card:hover img {
    transform: scale(1.1);
}

/* Nutrition Guide */
.nutrition-guide {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.guide-item {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.guide-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-speed);
}

.guide-item:hover img {
    transform: scale(1.1);
}

.guide-item ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.guide-item li {
    margin: 0.5rem 0;
    color: var(--text-secondary);
    transition: color var(--transition-speed);
}

.guide-item:hover li {
    color: var(--text-primary);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, var(--primary-light) 0%, transparent 100%);
    opacity: 0.1;
    transition: height var(--transition-speed);
}

.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--background-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h4 {
    color: var(--background-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: all var(--transition-speed);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
}

/* Cookie Notice */
.cookies-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 33, 33, 0.95);
    color: var(--background-white);
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    transform: translateY(100%);
    animation: slideUp 0.5s ease forwards 1s;
}

.cookies-notice a {
    color: var(--primary-light);
    text-decoration: none;
    margin-left: 1rem;
    transition: color var(--transition-speed);
}

.cookies-notice a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes moveBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

/* Scroll Animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    html {
        font-size: 14px;
    }

    .benefits-grid,
    .guide-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .nav-toggle-label {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--background-white);
        flex-direction: column;
        padding: 2rem;
        transition: left var(--transition-speed);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .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;
    }

    .benefits-grid,
    .guide-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

/* Interactive Elements */
.button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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;
}

.button:hover::before {
    width: 300px;
    height: 300px;
}

.button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.hover-card {
    position: relative;
    overflow: hidden;
}

.hover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    transition: left 0.8s ease;
}

.hover-card:hover::before {
    left: 100%;
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--background-light);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
    transform-origin: left;
    transition: transform 1s ease;
}

/* Tags and Badges */
.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background-color: var(--primary-light);
    color: var(--text-primary);
    font-size: 0.9rem;
    margin: 0.2rem;
    transition: all var(--transition-speed);
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
    transform: scale(1.05);
}

/* Image Effects */
.image-hover {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.image-hover img {
    transition: transform 0.6s ease;
}

.image-hover:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            transparent,
            rgba(0, 0, 0, 0.6)
    );
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.image-hover:hover .image-overlay {
    opacity: 1;
}

/* Custom Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background-color: var(--text-primary);
    color: var(--background-white);
    font-size: 0.9rem;
    border-radius: var(--border-radius);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
}

[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Loading Animations */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--background-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Floating Animation */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Section Transitions */
.section-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--background-light);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }

    body {
        background: none;
        color: black;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* Common Styles */
.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Timeline Section */
.journey-timeline {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 3rem;
}

.timeline-content {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-icon {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 4px var(--primary-color);
    overflow: hidden;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -80px;
    transform: translate(50%, -50%);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -80px;
    transform: translate(-50%, -50%);
}

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hexagon Grid Section */
.nutrition-hexagon {
    padding: 6rem 0;
    background: white;
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hexagon {
    position: relative;
    width: 200px;
    height: 230px;
    margin: 0 auto;
    background: var(--primary-light);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s ease;
}

.hexagon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 1rem;
    z-index: 1;
}

.hexagon:hover {
    transform: scale(1.05);
    background: var(--primary-color);
}

/* Testimonials Wave Section */
.testimonials-wave {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, var(--primary-light) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, var(--secondary-light) 0%, transparent 50%);
    opacity: 0.1;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-mark {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 80px;
        padding: 1.5rem;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
        transform: translateY(-50%);
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .hexagon-grid {
        grid-template-columns: 1fr;
    }

    .timeline-content {
        padding: 1rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, var(--primary-light) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, var(--secondary-light) 0%, transparent 50%);
    opacity: 0.1;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--primary-color);
    color: white;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 2px solid var(--background-light);
    background: transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--text-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Floating Labels */
.floating {
    position: relative;
}

.floating label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating .form-control:focus + label,
.floating .form-control:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Select Styling */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

/* Textarea Styling */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Form Border Animation */
.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.form-control:focus ~ .form-border {
    width: 100%;
}

/* Submit Button */
.submit-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-border {
    background-position: 100% 0;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }
}

@media screen and (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Form Validation Styles */
.form-control:invalid:not(:placeholder-shown) {
    border-color: var(--error-color);
}

.form-control:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
}

/* Focus Styles */
.form-control:focus {
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.1);
}

/* Hover Effects */
.form-control:hover {
    border-color: var(--primary-light);
}

/* Accessibility */
.form-control:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* About Hero Section */
.about-hero {
    margin-top: var(--header-height);
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%, transparent);
    background-size: 100px 100px;
    animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 0;
    }
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.about-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Team Introduction Section */
.team-intro {
    padding: 6rem 0;
    background: white;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-image:hover .team-photo {
    transform: scale(1.05);
}

.team-description {
    padding: 2rem;
}

.team-description h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.team-description p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(360deg);
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, var(--primary-light) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, var(--secondary-light) 0%, transparent 50%);
    opacity: 0.1;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.step-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.step-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.step-card:hover h3::after {
    width: 80px;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .team-content {
        gap: 2rem;
    }

    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-description {
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 4rem 0;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .step-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Print Styles */
@media print {
    .about-hero::before,
    .approach-section::before {
        display: none;
    }

    .team-content,
    .values-grid,
    .approach-steps {
        display: block;
    }

    .value-card,
    .step-card {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }

    .team-photo {
        max-width: 300px;
        height: auto;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .about-hero::before,
    .team-photo,
    .value-icon,
    .step-card,
    .step-number {
        animation: none;
        transition: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .about-hero {
        background: var(--primary-color);
    }

    .value-icon {
        background: var(--primary-color);
        color: white;
    }

    .step-number {
        color: var(--primary-color);
        opacity: 1;
    }
}

/* Team Members Section Styles */
.team-members {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.team-members::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, var(--primary-light) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, var(--secondary-light) 0%, transparent 50%);
    opacity: 0.1;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* Member Card Styles */
.member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Photo Wrapper and Effects */
.member-photo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(var(--primary-color-rgb), 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-photo-wrapper:hover .member-photo {
    transform: scale(1.1);
}

.member-photo-wrapper:hover .photo-overlay {
    opacity: 1;
}

/* Member Info Styles */
.member-info {
    padding: 2rem;
    text-align: center;
}

.member-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.member-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.member-card:hover .member-name::after {
    width: 100%;
}

.member-title {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Credentials Styles */
.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.credential {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.member-card:hover .credential {
    background: var(--primary-color);
    color: white;
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Hover Effect for Entire Card */
.member-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);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.member-card:hover::before {
    transform: scaleX(1);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .team-members-grid {
        gap: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .team-members-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .member-photo-wrapper {
        width: 180px;
        height: 180px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .member-card,
    .member-photo,
    .photo-overlay,
    .credential {
        transition: none;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .member-card {
        border: 2px solid var(--primary-color);
    }

    .credential {
        background: var(--primary-color);
        color: white;
    }
}

/* Print Styles */
@media print {
    .team-members-grid {
        display: block;
    }

    .member-card {
        page-break-inside: avoid;
        margin-bottom: 2rem;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .member-photo-wrapper {
        width: 150px;
        height: 150px;
    }
}

.blog-hero {
    margin-top: var(--header-height);
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.blog-content {
    padding: 4rem 0;
    background: #fff;
}

.article-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

.article-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.article-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.food-list {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
}

.food-list h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.food-list ul {
    list-style: none;
    padding: 0;
}

.food-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.food-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .food-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(33, 33, 33, 0.95);
    color: white;
    padding: 1rem 0;
    transition: bottom 0.5s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-button {
    padding: 0.8rem 1.5rem;
    background: white;
    border: none;
    border-radius: 50px;
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-button:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}