:root {
    --primary: #1A3E5C;
    --bg-soft: #F5E9CC;
    --taupe: #8C7B70;
    --water-green: #5F8C8A;
    --terracotta: #C1A295;
    --light-gray: #D3D3D3;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-soft);
    color: #333;
    line-height: 1.8;
    padding-top: 80px;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: var(--primary);
}

.main-header {
    background-color: var(--primary);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 2px;
}

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

.hero-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

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

.bg-primary-dark {
    background-color: var(--primary);
    color: var(--bg-soft);
}

.bg-primary-dark h2 {
    color: var(--bg-soft);
}

.card-custom {
    background: #fff;
    border: 1px solid var(--light-gray);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.img-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 2px;
}

.main-footer {
    background-color: var(--primary);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--terracotta);
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(26, 62, 92, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.btn-accent {
    background-color: var(--water-green);
    color: white;
    border: none;
}

.btn-accent:hover {
    background-color: #4a6f6d;
    color: white;
}

.timeline {
    border-left: 2px solid var(--terracotta);
    padding-left: 20px;
    margin-left: 10px;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--terracotta);
    border-radius: 50%;
}

.glossary-rail {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--water-green);
}

.stat-strip {
    background: var(--water-green);
    color: white;
    padding: 40px 0;
    margin: 40px 0;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.matrix-table th, .matrix-table td {
    padding: 15px;
    border: 1px solid var(--light-gray);
}

.matrix-table th {
    background: var(--primary);
    color: white;
}