:root {
    --primary: #383E42; /* Graphitgrau */
    --accent-green: #9BA892; /* Salbeigrün */
    --accent-terra: #D87968; /* Terrakotta */
    --bg-light: #F8F8F8; /* Off-White */
    --text-dark: #2F363F;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.navbar {
    background-color: var(--primary);
    padding: 1.5rem 0;
    transition: all 0.3s;
}

.navbar-brand {
    letter-spacing: 3px;
    font-weight: 700;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 54, 63, 0.6);
}

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

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.btn-accent {
    background-color: var(--accent-green);
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.card {
    border: none;
    border-radius: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

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

.card-img-top {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}

.footer {
    background-color: var(--primary);
    color: #ccc;
}

.footer h5, .footer-logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.footer-links a {
    color: #999;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-green);
    text-decoration: none;
}

.disclaimer-text {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--accent-terra);
}

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

.glossary-rail {
    border-left: 2px solid var(--accent-green);
    padding-left: 20px;
}

.glossary-item {
    margin-bottom: 15px;
}

.glossary-term {
    font-weight: 600;
    cursor: pointer;
    color: var(--primary);
}

.glossary-def {
    display: none;
    font-size: 0.9rem;
    margin-top: 5px;
}

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

.timeline-item {
    padding: 20px;
    border-left: 1px solid var(--accent-terra);
    position: relative;
    margin-left: 20px;
}

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

.matrix-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

.matrix-cell {
    background: white;
    padding: 20px;
    border: 1px solid #eee;
}

.stat-strip {
    background: var(--accent-green);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.img-constrained {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}