:root {
    --primary-color: #333A40;
    --accent-blue: #607D8B;
    --bg-creme: #F8F7F4;
    --accent-terrakotta: #B26E63;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    background-color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; }
h3 { font-size: 1.6rem; margin-bottom: 1.2rem; }

.btn-accent {
    background-color: var(--accent-blue);
    color: #fff;
    border-radius: 0;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #455A64;
    color: #fff;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.hero-section {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-line {
    width: 80px;
    height: 3px;
    background: var(--accent-terrakotta);
    margin: 20px auto;
}

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

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

.quote-block {
    border-left: 4px solid var(--accent-terrakotta);
    padding-left: 20px;
    font-style: italic;
    color: var(--accent-blue);
}

.card-topic {
    border: 1px solid #eee;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #ddd;
}

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

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--accent-terrakotta);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
}

.table-minimal {
    width: 100%;
}

.table-minimal th, .table-minimal td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.table-minimal tr:nth-child(even) {
    background: var(--bg-creme);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.disclaimer-box {
    border: 1px solid var(--accent-terrakotta);
    padding: 20px;
    margin-bottom: 30px;
}

.glossary-rail {
    background: var(--bg-creme);
    padding: 20px;
    border-right: 3px solid var(--accent-blue);
}

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

.img-standard {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px;
}