:root {
    --primary: #364F6B;
    --secondary: #F5F5DC;
    --accent-lavender: #E6E6FA;
    --accent-sage: #D0E6A5;
    --text-dark: #333333;
    --white: #FFFFFF;
    --spacing-unit: 8px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Merriweather Sans', sans-serif;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; margin-top: 4rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }

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

.section-padding {
    padding: 100px 0;
}

.bg-beige { background-color: var(--secondary); }
.bg-lavender { background-color: var(--accent-lavender); }
.bg-primary { background-color: var(--primary); color: var(--white); }

header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s ease;
}

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

.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(54, 79, 107, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.btn-custom {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-custom:hover {
    background-color: var(--accent-sage);
    color: var(--primary);
}

.card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 0;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

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

.card-body {
    padding: 30px;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer a {
    color: var(--accent-lavender);
    text-decoration: none;
}

.disclaimer-box {
    border-left: 4px solid var(--accent-sage);
    padding: 20px;
    background: rgba(208, 230, 165, 0.1);
    margin: 40px 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--accent-sage);
}

.timeline-item {
    margin-bottom: 40px;
    width: 50%;
    padding: 20px;
    position: relative;
}

.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

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

.cookie-btns button {
    margin-left: 10px;
    padding: 5px 15px;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-small {
    max-width: 600px;
    margin: 20px auto;
}

.glossary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.accordion-header {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.accordion-content {
    display: none;
    padding-top: 15px;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .glossary-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 0; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; }
}