:root {
    --primary: #2C3E50;
    --accent-orange: #F39C12;
    --accent-green: #27AE60;
    --accent-red: #E74C3C;
    --neutral-light: #F8F9FA;
    --neutral-medium: #BDC3C7;
    --neutral-dark: #34495E;
    --white: #FFFFFF;
}

body {
    font-family: 'Lora', serif;
    color: var(--neutral-dark);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Lato', sans-serif;
    color: var(--primary);
    font-weight: 700;
    margin-top: 0;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }

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

section {
    padding: 100px 0;
}

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

.btn-custom {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-custom:hover {
    background-color: #E67E22;
}

.card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--neutral-medium);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.disclaimer-box {
    border-left: 5px solid var(--accent-red);
    background: #fff5f5;
    padding: 25px;
    margin: 40px 0;
}

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

.footer a { color: var(--neutral-medium); text-decoration: none; }
.footer a:hover { color: var(--accent-orange); }

.nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover { color: var(--accent-orange); }

.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.6);
}

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

.hero-content h1 { color: var(--white); }

.glossary-table {
    width: 100%;
    border-collapse: collapse;
}

.glossary-table th, .glossary-table td {
    padding: 20px;
    border-bottom: 1px solid var(--neutral-medium);
    text-align: left;
}

.glossary-table tr:nth-child(even) { background: var(--neutral-light); }

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

.cookie-btns {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}

.btn-accept { background: var(--accent-green); color: white; }
.btn-reject { background: var(--neutral-dark); color: white; }
.btn-info { background: transparent; border: 1px solid white; color: white; }

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