:root {
    --primary: #004d4d;
    --accent: #d4af37;
    --dark: #1a1a1a;
    --slate: #2f4f4f;
    --grey: #f4f4f4;
    --muted-grey: #a0a0a0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background-color: #fff;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; color: #fff; }
h2 { font-size: 2.5rem; margin-bottom: 1.2rem; color: var(--primary); }
h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--slate); }

.main-header {
    background: var(--primary);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    color: var(--accent) !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-link {
    color: #fff !important;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.hero-section {
    height: 85vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,77,77,0.8) 0%, rgba(0,77,77,0.2) 100%);
}

.section-padding { padding: 100px 0; }
.bg-muted { background-color: var(--grey); }
.bg-dark-slate { background-color: var(--slate); color: #fff; }

.cinematic-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    box-shadow: 20px 20px 0px var(--accent);
    object-fit: cover;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.nutrient-block {
    text-align: center;
    padding: 20px;
}

.nutrient-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    padding: 20px;
    border-left: 2px solid var(--accent);
    margin-left: 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 25px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.btn-gold {
    background-color: var(--accent);
    color: var(--primary);
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--primary);
    color: var(--accent);
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 30px;
    background: transparent;
}

.main-footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 0 20px;
    border-top: 5px solid var(--primary);
}

.footer-heading {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

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

.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--muted-grey); transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--slate);
    color: #fff;
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

.faq-accordion .card {
    border: none;
    margin-bottom: 10px;
}

.faq-accordion .card-header {
    background: var(--grey);
    cursor: pointer;
    border: none;
}

.compliance-block {
    border: 1px solid var(--muted-grey);
    padding: 30px;
    margin: 40px 0;
    background: #f9f9f9;
}

.item-card {
    border: 1px solid #eee;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}

.item-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.item-content { padding: 25px; }

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.benefit-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}