/* =========================================
   Farbdefinitionen
   ========================================= */
:root {
    --primary: #e48f00;
    --dark: #4d3f3b;
    --accent: #003e6b;
    --text: #444;
    --bg: #f8f9fa;
}

/* =========================================
   Grundlayout
   ========================================= */
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   HERO MIT LOGO OBEN LINKS – JOBSEITEN-STIL
   ========================================= */
.hero {
    position: relative;
    background-color: var(--dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.12) 0%, transparent 40%);
    color: white;
    padding: 6rem 1rem 4rem 1rem;
    text-align: center;
}

/* Logo oben links */
.hero-logo-left {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.hero-logo-left img {
    height: 70px;
    width: auto;
}

/* Zentrierter Inhalt */
.hero-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-center h1 {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
}

.hero-center .subline {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 1.8rem;
}

/* CTA im Hero */
.hero-btn {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.6rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
}

.hero-btn:hover {
    background: #c77a00;
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
    background: white;
    width: 90%;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* “alt” Abschnitt jetzt ebenfalls weiß */
.section.alt {
    background: white;
}

.section h2 {
    color: var(--accent);
    margin-top: 0;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.3rem;
    font-size: 1.9rem;
}

.section h3 {
    color: var(--primary);
    margin-top: 2rem;
}

/* Listen */
.section ul {
    padding-left: 1.2rem;
}

/* GRID für Wissensübersicht */
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.knowledge-box {
    display: block;
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    border-left: 4px solid var(--primary);
}

.knowledge-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.knowledge-box h3 {
    margin-top: 0;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.knowledge-box p {
    margin: 0;
    color: #555;
}

/* =========================================
   CTA FOOTER
   ========================================= */
.cta-footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
}

.cta-footer .cta-btn {
    background: white;
    color: var(--primary);
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    font-weight: bold;
    text-decoration: none;
}

.cta-footer .cta-btn:hover {
    background: #f2f2f2;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--dark);
    color: white;
    padding: 1rem 0;
    text-align: center;
    border-top: 4px solid var(--primary);
}
/* =========================================
   FOOTER – Linkfarben korrigieren
   ========================================= */
.footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {

    .hero {
        padding: 5rem 1rem 3rem 1rem;
    }

    .hero-logo-left img {
        height: 55px;
    }

    .hero-center h1 {
        font-size: 1.9rem;
    }

    .hero-center .subline {
        font-size: 1rem;
    }
}