:root {
    --primary: #264653;
    --secondary: #2A9D8F;
    --accent-yellow: #E9C46A;
    --accent-orange: #F4A261;
    --text-dark: #333333;
    --bg-light: #F5F5F5;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.8;
    margin: 0;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-fixed {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--primary);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand { font-size: 1.8rem; color: var(--accent-yellow) !important; }
.nav-link { color: #fff !important; font-size: 0.9rem; font-family: 'Montserrat'; }
.nav-link:hover { color: var(--accent-orange) !important; transition: 0.3s; }

.section-padding { padding: 120px 0; }
.hero-full {
    height: 80vh;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}

.card-custom {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 40px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 4px solid var(--secondary);
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.btn-accent {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

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

.footer-section {
    background: var(--primary);
    color: #fff;
    font-size: 0.9rem;
}

.footer-heading { color: var(--accent-yellow); font-size: 1.1rem; margin-bottom: 25px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--accent-orange); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(38, 70, 83, 0.98);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    font-family: 'Montserrat';
    font-size: 0.85rem;
}

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

.glossary-rail {
    border-left: 2px solid var(--accent-yellow);
    padding-left: 30px;
}

.timeline-item {
    border-left: 1px solid var(--secondary);
    padding: 0 0 30px 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 11px;
    height: 11px;
    background: var(--accent-orange);
    border-radius: 50%;
}

.matrix-table { width: 100%; border-collapse: collapse; }
.matrix-table td, .matrix-table th { border: 1px solid #ddd; padding: 15px; }
.matrix-table th { background: var(--primary); color: white; }

.img-cinematic {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .hero-full { height: auto; padding: 100px 0; }
}