:root {
    --hellgrau: #f2f2f2;
    --dunkelpetrol: #1a3a4a;
    --terrakotta: #a35b42;
    --senfgelb: #c9a041;
    --text-color: #333333;
    --white: #ffffff;
    --max-width: 1280px;
}

body {
    background-color: var(--hellgrau);
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dunkelpetrol);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--dunkelpetrol);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--dunkelpetrol);
    text-decoration: none;
}

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

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

.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.section {
    padding: 100px 0;
}

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

.card {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-top: 5px solid var(--dunkelpetrol);
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.accent-border {
    border-left: 4px solid var(--terrakotta);
    padding-left: 20px;
}

.table-container {
    overflow-x: auto;
    background: var(--white);
    padding: 30px;
}

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

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: var(--dunkelpetrol);
    color: var(--white);
}

.timeline {
    border-left: 2px solid var(--senfgelb);
    padding-left: 30px;
    position: relative;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    width: 16px;
    height: 16px;
    background: var(--senfgelb);
    border-radius: 50%;
}

.footer {
    background: var(--dunkelpetrol);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--white);
}

.btn-soft {
    display: inline-block;
    padding: 12px 30px;
    background: var(--terrakotta);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-soft:hover {
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    border-radius: 4px;
}

.cookie-btns {
    margin-top: 15px;
}

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

.btn-accept { background: var(--dunkelpetrol); color: white; }
.btn-decline { background: #eee; }

.myth-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.myth { background: #ffebeb; padding: 20px; border-left: 4px solid #cc0000; }
.reality { background: #ebffeb; padding: 20px; border-left: 4px solid #00cc00; }

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .myth-box { grid-template-columns: 1fr; }
}