:root {
    --primary: #1A2E3D;
    --accent-gold: #F4D03F;
    --accent-sea: #8CC0BC;
    --accent-blue: #C2D4DA;
    --text-dark: #1A2E3D;
    --text-light: #F8FBFC;
    --bg-light: #F0F0F0;
    --bg-white: #FFFFFF;
    --font-heading: 'Open Sans', sans-serif;
    --font-body: 'Merriweather', serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.bg-dark { background-color: var(--primary); color: var(--text-light); }
.bg-light { background-color: var(--bg-light); }
.bg-blue { background-color: var(--accent-blue); }

header {
    background: var(--primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-gold);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li { margin: 0 20px; }

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover { color: var(--accent-gold); }

.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(26, 46, 61, 0.6);
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.btn-accent {
    background: var(--accent-gold);
    color: var(--primary);
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-accent:hover { transform: translateY(-3px); }

.card {
    background: white;
    padding: 30px;
    border: 1px solid #ddd;
    transition: box-shadow 0.3s;
}

.card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.stat-strip {
    display: flex;
    justify-content: space-around;
    background: var(--primary);
    color: var(--accent-gold);
    padding: 40px 0;
    border-top: 5px solid var(--accent-sea);
}

.disclaimer-box {
    border: 2px solid var(--accent-gold);
    padding: 30px;
    margin: 40px 0;
    background: #fffcf0;
}

footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 60px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 20px;
    display: none;
    z-index: 9999;
    text-align: center;
}

.cookie-banner button {
    background: var(--accent-gold);
    border: none;
    padding: 5px 20px;
    margin: 0 10px;
    cursor: pointer;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

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

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

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

.timeline-item:nth-child(even) { margin-left: auto; }

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.infographic-strip {
    height: 10px;
    background: var(--bg-light);
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

.infographic-fill {
    height: 100%;
    background: var(--accent-sea);
}