:root {
  --ideal-blue-dark: #003273;
  --ideal-blue-mid: #0082c8;
  --ideal-orange: #f59b69;
  --ideal-red: #ac0000;
  --ideal-blue-middle: #005697;

  --text-dark: #222222;
  --text-muted: #333;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
  height: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER / HERO */
.hero {
  background: var(--ideal-blue-middle);
  color: #ffffff;
  padding: clamp(20px, 4vw, 40px) clamp(16px, 4vw, 24px);
  min-height: clamp(200px, 40vh, 200px);
  position: relative;
  display: flex;
  align-items: end;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: "Roboto Slab", Georgia, serif;
  letter-spacing: 0.03em;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text-small {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Weißer Header oben */
.top-header {
  background: #ffffff;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
}

/* Logo im Header */
.top-logo {
  height: 58px; /* bei Bedarf anpassen */
  width: auto;
}

/* Home Button */
.home-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ideal-blue-middle);
  color: #ffffff;
  text-decoration: none;
  border-radius: 24px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.home-button:hover {
  background: var(--ideal-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 50, 115, 0.2);
}

.home-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

@media (max-width: 600px) {
  .top-header {
    padding: 12px 16px;
  }

  .top-logo {
    height: 40px;
  }

  .home-button {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .home-button span {
    display: none;
  }

  .home-icon {
    width: 24px;
    height: 24px;
  }
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 32px);
  flex-wrap: wrap;
  padding: 10px 0;
  width: 100%;
}

.hero-title {
  max-width: 520px;
}

.hero-title h1 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.hero-icon {
  flex-shrink: 0;
}

/* Warn-Dreieck als SVG */
.warning-icon {
  width: clamp(70px, 15vw, 110px);
  height: auto;
}

/* CONTENT */
.content {
  min-height: 100%;
  padding: clamp(24px, 4vw, 32px) clamp(16px, 4vw, 24px) clamp(80px, 15vw, 120px);
}

.section {
  margin-bottom: 24px;
}

.section h2 {
  margin: 0 0 clamp(8px, 2vw, 12px);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  color: var(--ideal-blue-dark);
  line-height: 1.3;
}

.section p {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.65;
}

.section + .section {
  margin-top: 24px;
}

.buttons-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 12px;
  padding: 24px 0;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 14px) clamp(20px, 4vw, 28px);
  min-height: 44px;
  border-radius: 999px;
  border: none;
  background: var(--ideal-orange);
  color: #ffffff;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.1s ease;
}

.btn-pill:focus,
.btn-pill:hover {
  filter: brightness(0.94);
  outline: none;
}

.btn-pill:focus-visible {
  outline: 2px solid var(--ideal-orange);
  outline-offset: 2px;
}

.btn-pill:active {
  transform: scale(0.98);
}

.buttons-row {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
  flex-wrap: wrap;
}

/* neue Spaltenlogik */
.button-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.btn-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #000000;
  font-size: clamp(0.9rem, 1vw, 0.9rem);
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}


.content-small {
  margin-top: 16px;
}

/* STERBEFALL SECTION */
.section-sterbefall {
  margin-top: clamp(32px, 5vw, 48px);
}

.sterbefall-box {
  background: linear-gradient(135deg, #f59b69 0%, #e8834f 100%);
  border-left: 4px solid #d67548;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 4px 12px rgba(245, 155, 105, 0.3);
}

.sterbefall-box h3 {
  margin: 0 0 clamp(12px, 2vw, 16px);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: #ffffff;
  font-weight: 600;
}

.sterbefall-box p {
  margin: 0 0 clamp(18px, 3vw, 24px);
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
}

.sterbefall-box .btn-pill {
  display: inline-block;
  margin-top: 8px;
}

.btn-white {
  background: #ffffff;
  color: var(--ideal-orange);
  font-weight: 600;
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* VERTRIEBSPARTNER SECTION */
.section-vertriebspartner {
  margin-top: clamp(32px, 5vw, 48px);
}

.vertriebspartner-box {
  background: #e9ecef;
  border-left: 4px solid var(--ideal-blue-middle);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vertriebspartner-box h3 {
  margin: 0 0 clamp(8px, 2vw, 12px);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--ideal-blue-dark);
}

.vertriebspartner-box p {
  margin: 0 0 clamp(16px, 3vw, 20px);
  color: var(--text-dark);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.vertriebspartner-box .btn-pill {
  display: inline-block;
  margin-top: 8px;
}

/* PRESSE SECTION */
.section-presse {
  margin-top: clamp(24px, 4vw, 32px);
}

.presse-box {
  background: #fff4ec;
  border-left: 4px solid var(--ideal-orange);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.presse-box h3 {
  margin: 0 0 clamp(8px, 2vw, 12px);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--ideal-blue-dark);
}

.presse-box p {
  margin: 0 0 clamp(16px, 3vw, 20px);
  color: var(--text-dark);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.press-files {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: clamp(20px, 3vw, 24px);
}

.press-file-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(10px, 2vw, 12px) clamp(14px, 2vw, 16px);
  background: #ffffff;
  border: 2px solid #e6e6e6;
  border-radius: 6px;
  color: var(--ideal-blue-dark);
  text-decoration: none;
  font-size: clamp(0.95rem, 2vw, 1rem);
  font-weight: 500;
  transition: all 0.2s ease;
}

.press-file-link:hover,
.press-file-link:focus {
  background: var(--ideal-orange);
  color: #ffffff;
  border-color: var(--ideal-orange);
  transform: translateX(4px);
}

.press-contact {
  padding: clamp(14px, 2vw, 16px);
  background: #ffffff;
  border-radius: 6px;
  border: 2px solid rgba(245, 155, 105, 0.3);
  font-size: clamp(0.95rem, 2vw, 1rem);
}

.press-contact strong {
  color: var(--ideal-blue-dark);
}

.email-link-inline {
  color: var(--ideal-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.email-link-inline:hover,
.email-link-inline:focus {
  color: var(--ideal-blue-middle);
  text-decoration: underline;
}

/* BUTTON VARIANTS */
.btn-primary {
  background: var(--ideal-blue-middle);
}

.btn-primary:hover,
.btn-primary:focus {
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--ideal-blue-dark);
}

.btn-secondary:hover,
.btn-secondary:focus {
  filter: brightness(1.1);
}

.btn-download {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.btn-icon {
  font-size: 1.2em;
}

/* CONTACT INFO BOX */
.contact-info-box {
  background: #f8f9fa;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  margin: clamp(16px, 3vw, 20px) 0;
}

.contact-item {
  margin-bottom: clamp(12px, 2vw, 16px);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  color: var(--ideal-blue-dark);
  display: inline-block;
  min-width: 80px;
}

.contact-item a {
  color: var(--ideal-blue-middle);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover,
.contact-item a:focus {
  color: var(--ideal-orange);
  text-decoration: underline;
}

/* EMAIL INFO */
.email-info {
  margin-top: clamp(20px, 3vw, 24px);
  padding: clamp(16px, 3vw, 20px);
  background: #fff8f0;
  border-left: 3px solid var(--ideal-orange);
  
}

.email-link {
  color: var(--ideal-blue-middle);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.email-link:hover,
.email-link:focus {
  color: var(--ideal-orange);
  text-decoration: underline;
}

/* DOWNLOAD NOTE */
.download-note {
  text-align: center;
  margin-top: 12px;
  color: var(--text-muted);
}

/* BACK LINK */
.back-link {
  margin-top: clamp(32px, 5vw, 48px);
  text-align: center;
}

.vertriebspartner-downloads h3 {
  margin: 0 0 clamp(8px, 2vw, 12px);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--ideal-blue-dark);
  font-weight: 600;
}

/* DOWNLOAD CARDS GRID */
.download-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 24px);
  margin-top: clamp(24px, 4vw, 32px);
}

.download-card {
  background: #ffffff;
  padding: clamp(20px, 3vw, 28px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--ideal-blue-middle);
}

.card-icon {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: clamp(12px, 2vw, 16px);
  line-height: 1;
}

.card-title {
  margin: 0 0 clamp(16px, 2vw, 20px);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--ideal-blue-dark);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  min-height: 2.6em;
}

.card-files {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 12px);
}

.card-files li {
  margin: 0;
}

.card-files a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: clamp(10px, 2vw, 12px);
  background: #f8f9fa;
  border-radius: 6px;
  color: var(--ideal-blue-dark);
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.card-files a:hover,
.card-files a:focus {
  background: var(--ideal-blue-middle);
  color: #ffffff;
  border-color: var(--ideal-blue-middle);
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .download-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 540px) {
  .download-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT FORM */
.contact-form {
  background: #ffffff;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-row {
  margin-bottom: clamp(20px, 3vw, 24px);
}

.form-row-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(16px, 3vw, 20px);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--ideal-blue-dark);
  font-size: clamp(0.95rem, 2vw, 1rem);
}

.form-label.required::after {
  content: ' *';
  color: var(--ideal-red);
}

.form-control {
  width: 100%;
  padding: clamp(12px, 2vw, 14px);
  border: 2px solid #e6e6e6;
  border-radius: 6px;
  font-size: clamp(0.95rem, 2vw, 1rem);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: var(--ideal-blue-middle);
  box-shadow: 0 0 0 3px rgba(0, 86, 151, 0.1);
}

.form-control:invalid:not(:placeholder-shown) {
  border-color: var(--ideal-red);
}

.form-control:valid:not(:placeholder-shown) {
  border-color: #28a745;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-help {
  display: block;
  margin-top: 6px;
  color: #666;
  font-size: clamp(0.85rem, 1.8vw, 0.9rem);
}

.form-note {
  margin-top: 16px;
  color: #666;
  font-size: clamp(0.85rem, 1.8vw, 0.9rem);
}

.required-mark {
  color: var(--ideal-red);
}

.btn-large {
  padding: clamp(14px, 2.5vw, 16px) clamp(32px, 5vw, 48px);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
}

/* ALERTS */
.alert {
  padding: clamp(16px, 3vw, 20px);
  border-radius: 8px;
  margin-bottom: clamp(20px, 3vw, 24px);
  border-left: 4px solid;
}

.alert-success {
  background: #d4edda;
  border-color: #28a745;
  color: #155724;
}

.alert-error {
  background: #f8d7da;
  border-color: #dc3545;
  color: #721c24;
}

.alert strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Info box for important information */
.info-box {
  background: #e7f3ff;
  border: 1px solid #b3d9ff;
  border-left: 4px solid var(--ideal-blue-middle);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 20px);
  margin-bottom: clamp(20px, 3vw, 24px);
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--ideal-blue-dark);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
}

.info-box ul {
  margin: 12px 0;
  padding-left: 24px;
}

.info-box li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.info-box p {
  margin: 8px 0;
}

/* Responsive form adjustments */
@media (max-width: 640px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }
}

/* FOOTER */
.footer {
  background: var(--ideal-blue-dark);
  color: #ffffff;
  padding: clamp(20px, 4vw, 24px);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  gap: clamp(24px, 6vw, 60px);
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Roboto Slab", Georgia, serif;
}

.footer-logo-main {
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-logo-sub {
  font-size: 0.9rem;
}

.social-row {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: clamp(16px, 3vw, 26px);
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover,
.social-icon:focus {
  transform: scale(1.1);
  opacity: 0.9;
  outline: none;
}

.social-icon:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-contact h3 {
  margin: 0 0 clamp(6px, 2vw, 10px);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-family: "Roboto Slab", Georgia, serif;
}

.footer-contact p {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}

.footer-contact-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--ideal-orange);
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: clamp(20px, 4vw, 32px);
  padding: clamp(16px, 3vw, 20px) clamp(20px, 4vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: clamp(16px, 3vw, 24px);
}

.footer-legal a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.footer-legal a:hover,
.footer-legal a:focus {
  color: var(--ideal-orange);
  opacity: 1;
  text-decoration: underline;
}

.footer-legal .copyright {
  color: #ffffff;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero {
    align-items: center;
  }

  .hero-main {
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-title h1 {
    font-size: clamp(1.4rem, 5vw, 1.7rem);
  }

  .buttons-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-pill {
    width: 100%;
    max-width: 320px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-logo-block {
    width: 100%;
  }

  .footer .top-logo {
    height: auto !important;
    width: 50%;
  }

  .footer-contact {
    width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

    /* Die Spalte definiert die Breite */
  .button-col {
    width: 100%;
    max-width: 320px;   /* gewünschte Zielbreite */
  }

  /* Button füllt die Spalte komplett */
  .btn-pill {
    width: 100%;
    max-width: none;    /* hebt alte Begrenzung auf */
  }

  /* Untertext bündig zum Button */
  .btn-label {
    width: 100%;
    text-align: center;
  }
}

/* Very small screens */
@media (max-width: 375px) {
  .hero-icon {
    display: none;
  }

  .warning-icon {
    width: 60px;
  }
}

/* IMPRESSUM PAGE STYLES */
.impressum-section h3 {
  margin: 0 0 clamp(8px, 2vw, 12px);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--ideal-blue-dark);
  line-height: 1.3;
  font-weight: 600;
}

.impressum-section p {
  margin-bottom: clamp(12px, 2vw, 16px);
}

.impressum-section a {
  color: var(--ideal-blue-middle);
  text-decoration: none;
  transition: color 0.2s ease;
}

.impressum-section a:hover,
.impressum-section a:focus {
  color: var(--ideal-orange);
  text-decoration: underline;
}

.impressum-table {
  width: 100%;
  overflow-x: auto;
  margin: clamp(16px, 3vw, 24px) 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.impressum-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.impressum-table thead {
  background: linear-gradient(135deg, var(--ideal-blue-dark) 0%, var(--ideal-blue-middle) 100%);
  color: #ffffff;
}

.impressum-table th {
  padding: clamp(12px, 2.5vw, 16px);
  text-align: left;
  font-weight: 600;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.impressum-table th:last-child {
  border-right: none;
}

.impressum-table td {
  padding: clamp(12px, 2.5vw, 16px);
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #f0f0f0;
  color: var(--text-dark);
  line-height: 1.5;
}

.impressum-table td:last-child {
  border-right: none;
}

.impressum-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.impressum-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.impressum-table tbody tr:last-child td {
  border-bottom: none;
}

.impressum-table tbody tr:hover {
  background: #f0f7ff;
  transition: background 0.2s ease;
}

.impressum-table td:first-child {
  font-weight: 500;
  color: var(--ideal-blue-dark);
}

/* Responsive table */
@media (max-width: 640px) {
  .impressum-table {
    font-size: 0.8rem;
  }

  .impressum-table th,
  .impressum-table td {
    padding: 8px;
  }

  .impressum-table table {
    min-width: 600px;
  }
}

/* H1: auf Mobile bündig links, ab Desktop darf er (wenn gewünscht) leicht nach links ziehen */
.incident-title{
  margin: 0;
  padding-left: 0;
  line-height: 1.12;

  /* Falls ihr irgendwo text-indent oder ähnliches habt: */
  text-indent: 0;
}

/* Optional: Desktop leicht nach links ziehen, Mobile neutral */
@media (min-width: 768px){
  .incident-title{
    margin-left: -1em; /* oder was du brauchst */
  }
}

/* Kicker (kleine Zeile oben) */
.incident-kicker{
  display: block;
  font-size: clamp(0.52em, 1.6vw, 0.62em);
  line-height: 1.1;
  margin: 0 0 0.15em 0;
  font-weight: 400;
}

/* Sicherstellen, dass der Kicker nicht „extra“ eingerückt ist */
.incident-title,
.incident-kicker{
  padding-left: 0;
  margin-left: 0;
}

