:root {
    --primary-color: #2E4057;
    --secondary-color: #8D99AE;
    --accent-gold: #D7C49E;
    --accent-sage: #B0C4B1;
    --bg-light: #F8F9FA;
    --text-dark: #212529;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--primary-color);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.5px;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--primary-color); }
h2 { font-size: 2.2rem; margin-bottom: 1.2rem; color: var(--secondary-color); }
h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary-color); }

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

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

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

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

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

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

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

.compliance-banner {
    background: var(--accent-gold);
    color: var(--primary-color);
    padding: 15px 0;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.card-custom {
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.btn-olnova {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-olnova:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

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

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

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

.disclaimer-box {
    border-left: 4px solid var(--accent-sage);
    padding: 30px;
    background: #f1f4f1;
    margin: 40px 0;
}

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

.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.img-cinematic {
    filter: contrast(1.1) brightness(0.9);
    box-shadow: 20px 20px 0px var(--accent-sage);
    max-width: 100%;
    height: auto;
}

.glossary-rail {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    gap: 20px;
}

.glossary-item {
    min-width: 250px;
    background: var(--bg-light);
    padding: 20px;
    border-bottom: 3px solid var(--accent-gold);
}

.stat-strip {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 700;
}