:root {
    --primary-color: #2F4F4F;
    --secondary-color: #F5F5DC;
    --accent-rust: #B87333;
    --accent-gold: #D4AF37;
    --accent-blue: #004466;
    --text-dark: #1a1a1a;
    --white: #ffffff;
    --spacing-unit: 8px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-weight: 700;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; border-bottom: 1px solid var(--accent-gold); padding-bottom: 10px; }
h3 { font-size: 1.75rem; }

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

header {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-gold);
}

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
    margin-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 79, 79, 0.6);
}

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

.hero h1 { color: var(--white); margin-bottom: 20px; }

section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(47, 79, 79, 0.1);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.section-dark h2 { color: var(--accent-gold); border-color: var(--accent-rust); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }

.img-fluid {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--accent-gold);
    padding: 5px;
}

.btn-custom {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-rust);
    color: var(--white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: var(--white);
}

.card {
    background: var(--white);
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); }

.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--secondary-color); text-decoration: none; }

.disclaimer-box {
    border: 1px solid var(--accent-gold);
    padding: 20px;
    margin: 40px 0;
    background: rgba(212, 175, 55, 0.05);
}

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

.accordion-item { border-bottom: 1px solid var(--accent-gold); padding: 15px 0; }
.accordion-header { cursor: pointer; font-weight: bold; display: flex; justify-content: space-between; }
.accordion-content { display: none; padding-top: 15px; }

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

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

.glossary-rail {
    position: sticky;
    top: 100px;
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--accent-rust);
}

table.comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

table.comparison th, table.comparison td {
    border: 1px solid var(--primary-color);
    padding: 15px;
    text-align: left;
}

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

@media (max-width: 992px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .hero { height: 60vh; }
}