:root {
    --primary: #1A2B3C;
    --accent-gold: #C8A252;
    --warm-grey: #E0E0E0;
    --deep-green: #385C4F;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-light: #AAAAAA;
}

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

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

h1 { font-size: 3.5rem; font-weight: 800; color: var(--primary); margin-bottom: 2rem; }
h2 { font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; font-weight: 600; color: var(--primary); }

.navbar { background-color: var(--white); border-bottom: 1px solid var(--warm-grey); }
.navbar-brand { font-weight: bold; color: var(--primary) !important; font-size: 1.5rem; }
.nav-link { color: var(--primary) !important; font-weight: 500; padding: 0.5rem 1.5rem !important; transition: color 0.3s; }
.nav-link:hover { color: var(--accent-gold) !important; }

.section-padding { padding: 100px 0; }
.bg-warm { background-color: var(--warm-grey); }
.bg-dark-blue { background-color: var(--primary); color: var(--white); }

.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 43, 60, 0.6);
}

.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }

.card {
    border: none;
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}
.card:hover { transform: translateY(-5px); }
.card-img-top { border-radius: 0; height: 250px; object-fit: cover; }

.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    transition: all 0.3s;
}
.btn-primary:hover { background-color: var(--deep-green); }

.footer { background-color: var(--primary); color: var(--white); border-top: 5px solid var(--accent-gold); }
.footer-title { color: var(--accent-gold); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer a { color: var(--warm-grey); }
.footer a:hover { color: var(--accent-gold); text-decoration: none; }

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

.accordion .card-header { background: var(--warm-grey); border: none; cursor: pointer; }
.accordion .btn-link { color: var(--primary); font-weight: bold; text-decoration: none; }

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

.disclaimer-box {
    border: 2px solid var(--primary);
    padding: 30px;
    background: var(--warm-grey);
}

.timeline { border-left: 2px solid var(--accent-gold); padding-left: 20px; }
.timeline-item { margin-bottom: 30px; position: relative; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px; top: 5px;
    width: 12px; height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
}