:root {
    --primary-dark: #2F4F4F;
    --accent-green: #8B9E77;
    --accent-ochre: #C7A97A;
    --pearl-grey: #D3D3D3;
    --white: #FFFFFF;
    --text-main: #333333;
}

body {
    font-family: 'Merriweather', serif;
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, .nav-link, .btn-custom {
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--accent-green);
    padding-left: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-ochre);
    margin-bottom: 1rem;
}

.bg-slate { background-color: var(--primary-dark); color: var(--pearl-grey); }
.bg-pearl { background-color: var(--pearl-grey); }
.text-accent { color: var(--accent-green); }

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

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

header {
    background-color: var(--primary-dark);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.nav-link {
    color: var(--pearl-grey) !important;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(47, 79, 79, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    max-width: 700px;
    border-top: 8px solid var(--accent-ochre);
}

.btn-custom {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-custom:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

.card-custom {
    background: var(--white);
    border: 1px solid var(--pearl-grey);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.footer-main {
    background-color: var(--primary-dark);
    color: var(--pearl-grey);
    padding: 80px 0 20px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.85rem;
    text-align: center;
}

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    box-shadow: 15px 15px 0px var(--pearl-grey);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    z-index: 2000;
    display: none;
    text-align: center;
}

.cookie-banner button {
    margin: 0 10px;
}

.glossary-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(211, 211, 211, 0.3);
}

.alert-block {
    background: #fdf2f2;
    border: 2px solid var(--accent-ochre);
    padding: 30px;
    margin: 40px 0;
}

.stat-strip {
    display: flex;
    justify-content: space-around;
    background: var(--pearl-grey);
    padding: 40px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.timeline {
    border-left: 2px solid var(--accent-green);
    padding-left: 30px;
    margin-left: 20px;
}

.timeline-event {
    position: relative;
    margin-bottom: 30px;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--accent-ochre);
    border-radius: 50%;
}