/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f1419;
    --bg-charcoal: #1a2329;
    --bg-card: #1e2a2f;
    --text-primary: #e8e8e8;
    --text-secondary: #b8b8b8;
    --accent-green: #4a6a4a;
    --accent-green-light: #5a7a5a;
    --accent-green-dark: #3a5a3a;
    --neon-yellow: #ffff00;
    --neon-lime: #ccff00;
    --shadow-soft: rgba(0, 0, 0, 0.3);
    --shadow-glow: rgba(74, 106, 74, 0.3);
    --border-radius: 16px;
    --border-radius-small: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Sticky Advertising Badge */
.ad-badge {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--neon-yellow);
    color: #000;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 255, 0, 0.5);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--accent-green);
    padding: 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px var(--shadow-soft);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
}

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

.btn-accept,
.btn-reject,
.btn-settings {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background: var(--accent-green);
    color: white;
}

.btn-reject {
    background: var(--bg-charcoal);
    color: var(--text-primary);
    border: 1px solid var(--accent-green);
}

.btn-settings {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
}

/* Header */
.header {
    background: var(--bg-charcoal);
    padding: 20px 0;
    position: sticky;
    top: 48px;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 106, 74, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.nav a:hover {
    color: var(--accent-green-light);
}

.header-cta {
    padding: 12px 24px;
}

/* Buttons */
.btn-primary {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-green-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-glow);
}

.btn-research {
    background: transparent;
    color: var(--accent-green-light);
    border: 2px solid var(--accent-green);
    padding: 10px 20px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: var(--transition);
    font-weight: 600;
}

.btn-research:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-2px);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-charcoal) 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Crect fill='%230f1419' width='1200' height='800'/%3E%3Cpath d='M200 100 Q400 200 600 100 T1000 100' stroke='%232a3a2a' stroke-width='2' fill='none' opacity='0.3'/%3E%3Cpath d='M100 300 Q300 400 500 300 T900 300' stroke='%233a4a3a' stroke-width='2' fill='none' opacity='0.2'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

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

.hero-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.hero-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow-soft);
    border: 1px solid rgba(74, 106, 74, 0.3);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow-glow);
}

.product-image-placeholder {
    width: 100%;
    height: 300px;
    background: transparent;
    border-radius: var(--border-radius-small);
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.product-cta {
    width: 100%;
    text-align: center;
    text-decoration: none;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: var(--neon-lime);
    color: #000;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    border-radius: var(--border-radius-small);
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(204, 255, 0, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(204, 255, 0, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(204, 255, 0, 0.8); }
}

.disclaimer-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.form-disclaimer {
    margin: 20px 0;
}

/* Mid Section */
.mid-section {
    padding: 80px 0;
}

.mid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mid-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.mid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mid-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

/* Reasons Section */
.reasons-section {
    padding: 80px 0;
    background: var(--bg-charcoal);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.reason-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    border: 1px solid rgba(74, 106, 74, 0.3);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.reason-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-glow);
}

.reason-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--shadow-glow);
}

.reason-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
    margin-top: 20px;
}

.reason-card p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Why Joints Section */
.why-joints-section {
    padding: 80px 0;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Routine Section */
.routine-section {
    padding: 80px 0;
    background: var(--bg-charcoal);
}

.routine-content {
    max-width: 900px;
    margin: 0 auto;
}

.routine-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: center;
}

.routine-checklist {
    display: grid;
    gap: 24px;
}

.routine-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    border: 1px solid rgba(74, 106, 74, 0.3);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-30px);
}

.routine-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.routine-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px var(--shadow-glow);
}

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.routine-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.routine-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Ingredients Section */
.ingredients-section {
    padding: 80px 0;
}

.ingredients-note {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius-small);
    margin-bottom: 40px;
    border-left: 4px solid var(--neon-lime);
    color: var(--text-primary);
}

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

.ingredient-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-soft);
    border: 1px solid rgba(74, 106, 74, 0.3);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.ingredient-card.visible {
    opacity: 1;
    transform: scale(1);
}

.ingredient-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px var(--shadow-glow);
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: transparent;
}

.ingredient-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.ingredient-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

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

.research-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 16px;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.research-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    border: 1px solid rgba(74, 106, 74, 0.3);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.research-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-glow);
}

.research-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.research-note {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 10px;
}

/* How to Use Section */
.how-to-section {
    padding: 80px 0;
}

.how-to-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-to-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-soft);
    border: 1px solid rgba(74, 106, 74, 0.3);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.how-to-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.how-to-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-glow);
}

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

.how-to-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.how-to-card p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.how-to-card em {
    color: var(--accent-green-light);
    font-size: 14px;
}

/* Consult Section */
.consult-section {
    padding: 80px 0;
    background: var(--bg-charcoal);
}

.consult-content {
    max-width: 900px;
    margin: 0 auto;
}

.consult-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: center;
}

.consult-list {
    display: grid;
    gap: 30px;
}

.consult-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    border: 1px solid rgba(74, 106, 74, 0.3);
}

.consult-item h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.consult-item ul {
    list-style: none;
    padding-left: 0;
}

.consult-item li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
}

.consult-item li::before {
    content: "•";
    color: var(--accent-green-light);
    font-size: 24px;
    position: absolute;
    left: 0;
}

/* Brand Story Section */
.brand-story-section {
    padding: 80px 0;
}

.brand-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.brand-story-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-charcoal);
}

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

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    border: 1px solid rgba(74, 106, 74, 0.3);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px var(--shadow-glow);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-green-light);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-green);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    position: relative;
}

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

.contact-form-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-soft);
    position: sticky;
    top: 120px;
}

.contact-form-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    padding: 40px;
}

.contact-form-content {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow-soft);
    border: 1px solid rgba(74, 106, 74, 0.3);
}

.contact-form-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-form-content > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    display: grid;
    gap: 24px;
}

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

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

.form-group input,
.form-group textarea {
    background: var(--bg-charcoal);
    border: 2px solid rgba(74, 106, 74, 0.3);
    border-radius: var(--border-radius-small);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px var(--shadow-glow);
}

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

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

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

.checkbox-group a {
    color: var(--accent-green-light);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-charcoal);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(74, 106, 74, 0.3);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-ad-label {
    color: var(--neon-yellow) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    margin-top: 16px !important;
}

.footer-disclaimer {
    font-size: 12px !important;
    font-style: italic;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--accent-green-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(74, 106, 74, 0.3);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Secondary Pages Styles */
.page-header {
    padding: 120px 0 60px;
    background: var(--bg-charcoal);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.page-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.page-content {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: var(--text-primary);
}

.page-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.page-content ul,
.page-content ol {
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-left: 30px;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 12px;
}

.page-content a {
    color: var(--accent-green-light);
    text-decoration: underline;
}

.page-content strong {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-card {
        order: -1;
    }
    
    .mid-content {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .research-grid {
        grid-template-columns: 1fr;
    }
    
    .how-to-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-image {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

