:root {
    --primary-color: #1A2E44;
    --secondary-color: #F0F2F5;
    --accent-gold: #A67C00;
    --accent-green: #38761D;
    --text-dark: #2C3E50;
    --text-light: #F8F9FA;
}

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

h1, h2, h3, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: 3rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.2rem; border-left: 4px solid var(--accent-gold); padding-left: 15px; }
h3 { font-size: 1.3rem; margin-bottom: 1rem; }

.navbar { background-color: var(--primary-color); border-bottom: 2px solid var(--accent-gold); }
.nav-link { color: var(--text-light) !important; font-weight: 500; transition: 0.3s; }
.nav-link:hover { color: var(--accent-gold) !important; }

.hero-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(rgba(26, 46, 68, 0.85), rgba(26, 46, 68, 0.85)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero-section h1 { color: var(--accent-gold); }

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

.card-concept {
    background: white;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, background-color 0.4s ease;
    height: 100%;
    padding: 30px;
    border-bottom: 3px solid transparent;
}

.card-concept:hover {
    transform: translateY(-10px);
    background-color: #ffffff;
    border-bottom: 3px solid var(--accent-gold);
}

.img-container {
    overflow: hidden;
    margin-bottom: 20px;
}

.img-fluid-custom {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow: 15px 15px 0px var(--accent-gold);
}

.stat-strip {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
}

.glossary-rail {
    background: #fff;
    padding: 20px;
    border-right: 2px solid var(--accent-gold);
}

.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 20px;
}

.footer-title { color: var(--accent-gold); font-size: 1.1rem; margin-bottom: 25px; }
.footer-divider { border-top: 1px solid rgba(166, 124, 0, 0.3); margin: 40px 0 20px; }
.footer a { color: var(--text-light); text-decoration: none; transition: 0.3s; }
.footer a:hover { color: var(--accent-gold); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    display: none;
    border-top: 2px solid var(--accent-gold);
}

.btn-gold { background-color: var(--accent-gold); color: white; border-radius: 0; padding: 10px 25px; border: none; transition: 0.3s; }
.btn-gold:hover { background-color: #8a6800; color: white; }

.disclaimer-box {
    background: #fdf2f2;
    border: 1px solid #eecaca;
    padding: 20px;
    margin: 30px 0;
    color: #721c24;
}

.matrix-item {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
}