/* ----------------------------------------
   RESET & BASIS
---------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ----------------------------------------
   FARBEN & SCHRIFTEN
---------------------------------------- */
:root {
  --signature-red: #630922;
  --signature-blue: #4E7294;
  --bg-light: #FAFAF8;
  --text-color: #1A1A1A;
}

/* Fließtext */
body {
  font-family: "jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* Links */
a {
  color: var(--signature-blue);
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: var(--signature-red);
  text-decoration: underline;
}

/* Überschriften in Dax, Signature Rot */
h1, h2, h3, h4 {
  font-family: "ff-dax", "ff-dax-pro", sans-serif;
  letter-spacing: 0.1rem;
  font-weight: 400;
  color: var(--signature-red);
}

/* Wrapper */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.8rem;
}


/* ----------------------------------------
   IMPRESSUM & DATENSCHUTZ – TEXTBOX
---------------------------------------- */

.section {
  padding: 3.5rem 0 4rem 0;
}

.section-alt {
  background: var(--bg-light);
}

/* Überschrift */
.section-title {
  font-family: "ff-dax", "ff-dax-pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--signature-red);
  letter-spacing: 0.08rem;
  margin-bottom: 2rem;
}

/* Fließtext – jetzt schmaler (500px) */
.text-content {
  max-width: 700px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.text-content p {
  margin-bottom: 1.2rem;
}

.text-content ul {
  margin: 0 0 1.2rem 1.4rem;
  padding-left: 0.8rem;
}

.text-content li {
  margin-bottom: 0.4rem;
}

/* Spezifische Regeln für die Sitemap-Liste */
.text-content ul, 
.text-content ul ul, 
.text-content ul ul ul {
  list-style-type: disc !important;
  display: block !important;
  margin: 0.5rem 0 0.5rem 1.4rem !important;
  padding-left: 0.8rem !important;
}

.text-content li {
  display: list-item !important;
  margin-bottom: 0.4rem !important;
}

/* Deaktiviert Grid-Layouts innerhalb der Sitemap, falls vorhanden */
.text-content .expertise-grid {
  display: block !important;
}
/* ----------------------------------------
   FOOTER

/* ----------------------------------------
   RESPONSIVE
---------------------------------------- */

@media (max-width: 768px) {

  .section {
    padding: 2.5rem 0 3rem 0;
  }

  .logo img {
    height: 24px;
  }

  .text-content {
    max-width: 100%;
    font-size: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
