:root {
    --primary-color: #2C3E50; /* Deep Slate Blue */
    --accent-gold: #C5A059;   /* Muted Gold */
    --accent-green: #2D5A27;  /* Forest Green */
    --accent-terracotta: #CC7A67; /* Soft Terracotta */
    --bg-light: #F8F9FA;
    --text-dark: #333333;
    --text-muted: #555555;
    --max-width: 1440px;
    --transition: all 0.4s ease;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.25rem; position: relative; padding-bottom: 10px; }
h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--accent-gold); }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.container-wide {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.bg-slate { background-color: var(--primary-color); color: #ffffff; }
.bg-slate h2, .bg-slate h3 { color: #ffffff; }

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar-brand {
    font-family: 'Gill Sans', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}
.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-left: 25px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--accent-gold) !important; }

/* Hero */
.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 62, 80, 0.6);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-content h1 { color: #ffffff; }

/* Panels & Cards */
.info-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    transition: var(--transition);
    height: 100%;
}
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent-gold);
}

.stat-strip {
    background: var(--accent-gold);
    color: #fff;
    padding: 40px 0;
    margin: 60px 0;
}

.glossary-rail {
    border-left: 4px solid var(--accent-terracotta);
    padding-left: 25px;
    margin-top: 30px;
}

/* Images */
.img-panel {
    border-radius: 2px;
    box-shadow: 20px 20px 0px var(--bg-light);
    max-width: 100%;
    height: auto;
}

/* Forms & Buttons */
.btn-trelim {
    padding: 12px 35px;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}
.btn-trelim:hover {
    background: var(--accent-gold);
    color: #fff;
    text-decoration: none;
}

.form-control {
    border-radius: 0;
    padding: 15px;
    border: 1px solid #ddd;
}

/* Footer */
footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 80px 0 40px;
}
footer h3 { color: #fff; margin-bottom: 30px; }
footer a { color: #bdc3c7; text-decoration: none; transition: var(--transition); }
footer a:hover { color: var(--accent-gold); }

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 4px solid var(--primary-color);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    .container-wide { padding: 0 20px; }
    section { padding: 60px 0; }
}