:root {
    --primary: #2E4057;
    --accent-green: #A3CC39;
    --accent-gold: #F0A500;
    --accent-red: #6F2232;
    --bg-light: #F8F8F8;
    --bg-border: #E0E0E0;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

section { padding: 100px 0; border-bottom: 1px solid var(--bg-border); }

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(46, 64, 87, 0.7);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.btn-custom {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-green);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn-custom:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--bg-light);
    padding: 40px;
    border: 1px solid var(--bg-border);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

.img-framed {
    border: 15px solid var(--bg-light);
    box-shadow: 20px 20px 0 var(--primary);
    max-width: 100%;
    height: auto;
}

.disclaimer-block {
    background: #f1f1f1;
    padding: 30px;
    border-left: 5px solid var(--accent-red);
    font-size: 0.9rem;
    margin: 40px 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    text-align: center;
}

.nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary);
    z-index: 1000;
    padding: 15px 0;
}

.nav-link {
    color: var(--white);
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-link:hover { color: var(--accent-green); }

.footer-main {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.timeline-item {
    border-left: 2px solid var(--accent-gold);
    padding-left: 30px;
    margin-bottom: 40px;
    position: relative;
}

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

.glossary-rail {
    background: var(--bg-light);
    padding: 20px;
    border-right: 3px solid var(--accent-green);
    height: fit-content;
}

.stat-strip {
    display: flex;
    justify-content: space-around;
    background: var(--primary);
    color: white;
    padding: 40px 0;
    margin: 40px 0;
}

.stat-item { text-align: center; }
.stat-item span { display: block; font-size: 2.5rem; font-weight: 800; color: var(--accent-green); }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-section { height: 60vh; }
    section { padding: 60px 0; }
}