:root {
    --primary-color: #2F3E46; /* Deep Slate Grey */
    --accent-ochre: #B87333;  /* Warm Ochre */
    --accent-sage: #84A98C;   /* Soft Sage Green */
    --accent-bronze: #8C7851; /* Muted Bronze */
    --light-bg: #F8F9FA;
    --off-white: #FFFFFF;
    --text-main: #333333;
    --border-thick: 3px;
}

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

h1, h2, h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Header & Nav */
.navbar {
    background-color: var(--primary-color);
    border-bottom: var(--border-thick) solid var(--accent-bronze);
}

.navbar-brand {
    font-weight: 900;
    color: var(--off-white) !important;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--off-white) !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Institutional Style Elements */
.institutional-border {
    border: 2px solid var(--primary-color);
    padding: 40px;
    position: relative;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-bronze);
    margin: 20px 0;
}

/* Hero Section */
.hero-block {
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--off-white);
}

.hero-overlay {
    background: rgba(47, 62, 70, 0.7);
    padding: 60px;
    max-width: 800px;
    border-left: 8px solid var(--accent-ochre);
}

/* Cards */
.info-card {
    background: var(--light-bg);
    border: 1px solid #ddd;
    border-bottom: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    height: 100%;
}

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

/* Timeline */
.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    height: 2px;
    background: var(--primary-color);
    width: 100%;
    position: absolute;
    top: 50%;
}

.timeline-point {
    width: 20px;
    height: 20px;
    background: var(--accent-ochre);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Stat Strip */
.stat-strip {
    background-color: var(--accent-bronze);
    color: white;
    padding: 40px 0;
}

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

.btn-woklen {
    background-color: var(--accent-ochre);
    color: white;
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.2s ease;
}

.btn-woklen:hover {
    background-color: var(--accent-bronze);
    color: white;
}

/* Compliance Block */
.compliance-box {
    background: #f1f1f1;
    border-left: 5px solid var(--accent-sage);
    padding: 25px;
    margin: 40px 0;
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #ccc;
    padding: 60px 0 20px;
}

footer h3 {
    color: var(--off-white);
    margin-bottom: 25px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--accent-ochre);
}

/* Images */
.img-constrained {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
}