:root {
    --primary-color: #2C3E50;
    --accent-blue: #5DADE2;
    --accent-gold: #E7B10A;
    --neutral-silver: #BDC3C7;
    --text-main: #2c3e50;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Merriweather', serif;
    color: var(--text-main);
    line-height: 1.8;
    background-color: #ffffff;
    padding-top: 70px;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand { font-size: 1.8rem; color: var(--accent-gold) !important; }

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 { font-size: 4rem; margin-bottom: 20px; }

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

.bg-silver { background-color: var(--neutral-silver); }

.card-custom {
    border: none;
    background: white;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.card-custom:hover { transform: translateY(-5px); }

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 0;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #d4a008;
    color: white;
}

.footer {
    background-color: var(--primary-color);
    color: white;
}

.footer-title {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer a { color: var(--neutral-silver); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.stat-strip {
    background: var(--primary-color);
    color: var(--accent-blue);
    padding: 40px 0;
    border-top: 4px solid var(--accent-gold);
}

.glossary-rail {
    border-left: 2px solid var(--accent-gold);
    padding-left: 20px;
}

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.2);
}

.timeline-item {
    border-left: 3px solid var(--accent-blue);
    padding-left: 20px;
    margin-bottom: 30px;
}