:root {
    --primary-color: #3F51B5;
    --secondary-color: #8BC34A;
    --accent-color: #FF9800;
    --bg-color: #F0F0F0;
    --text-main: #2C3E50;
    --text-muted: #607D8B;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --font-header: 'Roboto', sans-serif;
    --font-body: 'Merriweather', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-header);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

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

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

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

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-header);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

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

/* Layout Patterns */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 10px 10px 0px var(--border-color);
}

/* Components */
.stat-strip {
    display: flex;
    justify-content: space-around;
    background: var(--white);
    padding: 40px;
    margin: 40px 0;
    border-left: 5px solid var(--secondary-color);
}

.stat-item h4 { color: var(--secondary-color); font-size: 2rem; }

.glossary-rail {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.card {
    background: var(--white);
    padding: 30px;
    border-bottom: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

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

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-header);
    font-weight: 700;
    border-radius: 2px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: var(--accent-color);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    padding: 20px;
    border-left: 2px solid var(--primary-color);
    margin-left: 20px;
    position: relative;
    margin-bottom: 20px;
}

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

/* FAQ Accordion */
.accordion-item {
    background: var(--white);
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.accordion-content {
    padding: 0 20px 20px;
    display: none;
}

/* Footer */
footer {
    background: #222;
    color: #eee;
    padding: 60px 0 20px;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer-box {
    border: 2px solid #d32f2f;
    padding: 20px;
    margin: 20px 0;
    background: rgba(211, 47, 47, 0.05);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 2000;
    display: none;
}

.cookie-buttons {
    margin-top: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    margin-right: 10px;
    cursor: pointer;
    border: none;
}

/* Form */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .footer-grid {
        grid-template-columns: 1fr;
    }
    h1 { font-size: 2.5rem; }
    .hero { height: auto; padding: 100px 0; }
}