:root {
    --primary-color: #2C3E50;
    --secondary-color: #A9B7C6;
    --accent-light: #D1E1EB;
    --accent-warm: #E0C79A;
    --bg-neutral: #F8F8F8;
    --text-dark: #2C3E50;
}

body {
    font-family: 'Georgia', serif;
    background-color: var(--bg-neutral);
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    padding-top: 70px;
}

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

.max-width-container {
    max-width: 1440px;
    margin: 0 auto;
}

header {
    background-color: var(--bg-neutral);
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--primary-color) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: color 0.3s;
}

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

.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    background: rgba(44, 62, 80, 0.6);
    padding: 40px;
    text-align: center;
    color: #fff;
    max-width: 800px;
}

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

.bg-accent-grey { background-color: var(--secondary-color); color: #fff; }
.bg-accent-warm { background-color: var(--accent-warm); }

.card {
    border: none;
    border-radius: 0;
    background: #fff;
    transition: all 0.3s;
    height: 100%;
}

.card:hover {
    background-color: var(--accent-light);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 0;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

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

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

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

.timeline-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    position: relative;
    z-index: 2;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--primary-color);
    z-index: 9999;
    display: none;
}

.stat-strip {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.stat-item h3 { font-size: 2.5rem; color: var(--accent-warm); }

.img-fluid-custom {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}