:root {
    --primary: #2C3E50;
    --accent-mustard: #F39C12;
    --accent-sage: #2ECC71;
    --warm-gray: #BDC3C7;
    --light-gray: #F8F9FA;
    --text-dark: #2C3E50;
    --white: #FFFFFF;
}

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

h1, h2 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: var(--primary);
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-top: 3rem; margin-bottom: 1.5rem; }
h3 { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 1.5rem; }

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

section {
    padding: 100px 0;
}

/* Header & Nav */
header {
    background: var(--white);
    border-bottom: 1px solid var(--warm-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.6);
    z-index: 0;
}

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

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

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

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

.info-card {
    background: var(--light-gray);
    padding: 40px;
    border-top: 4px solid var(--accent-sage);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Signature Elements */
.timeline {
    border-left: 2px solid var(--warm-gray);
    padding-left: 40px;
    margin-left: 20px;
}

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

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

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

.comparison-table th, .comparison-table td {
    padding: 20px;
    border: 1px solid var(--warm-gray);
    text-align: left;
}

.comparison-table .mythos { background: #fdeaea; }
.comparison-table .fakt { background: #eafaf1; }

.accordion-item {
    border-bottom: 1px solid var(--warm-gray);
}

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

.accordion-body {
    padding-bottom: 20px;
    display: none;
}

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

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

.footer-links a {
    display: block;
    color: var(--warm-gray);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(189, 195, 197, 0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

/* Compliance Block */
.disclaimer-box {
    background: var(--light-gray);
    padding: 30px;
    border-left: 5px solid var(--accent-mustard);
    margin: 40px 0;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.cookie-btns button, .cookie-btns a {
    padding: 8px 20px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.btn-accept { background: var(--accent-sage); color: white; }
.btn-decline { background: var(--warm-gray); color: var(--primary); }
.btn-info { background: transparent; border: 1px solid white !important; color: white; }

/* Responsive */
@media (max-width: 768px) {
    .two-column, .card-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    h1 { font-size: 2.5rem; }
}