
      /* ===============================
   HERO SECTION
================================= */
/* Base reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }

/* Typography */
body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: #FAFBFC;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

/* Links inherit look unless styled elsewhere */
a { color: inherit; text-decoration: none; }

#hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
}

@media (max-width: 576px) {
    #hero {
            margin-top: 80px;
    }
}

#hero .hero-info h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

#hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 4px;
    background: #6366f1; /* Accent color */
    transform: translateX(-50%);
    border-radius: 10px;
}
.landing-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ===============================
   MAIN CONTENT SECTION
================================= */

#about {
    padding: 70px 0;
    background: #ffffff;
}

#about h1 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}

#about p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 16px;
}

#about h2,
#about h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #1f2937;
    margin-top: 40px;
    margin-bottom: 12px;
}


/* ===============================
   CONTAINER
================================= */

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

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
    #hero {
        padding: 70px 0 50px;
    }

    #about {
        padding: 50px 0;
    }
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.landing-footer {
    background: #FAFBFC;
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
}

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

.footer-brand-col img {
    height: 36px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-col-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ===============================
   Impressum Image
================================= */

.impressum-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Desktop */
@media (min-width: 992px) {
    .impressum-img {
        width: 35%;
    }
}