body {
  background-color: #f8f9fa;
  font-family: Arial, sans-serif;
  color: #2c3e50;
}

h1,
h3 {
  color: #002853;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background-color: #002853;
  border: none;
  height: 3.5rem;
  min-width: 7rem;
  width: auto;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

.btn-secondary {
  background-color: grey;
  border: none;
  height: 3.5rem;
  width: 5rem;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

.btn.btn-success {
  height: 3.5rem;
  min-width: 7rem;
  width: auto;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

input.form-control,
select.form-select {
  border-radius: 0.375rem;
  box-shadow: none;
  border: 1px solid #ced4da;
  color: #2c3e50;
}

.step {
  background-color: white;
  padding: 0.5rem 2rem 2rem 2rem; /* oben weiter reduziert */
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);

  width: 70%;
  margin: 0 auto 0 auto; /* nur zentriert, kein zusätzlicher Abstand oben */
}

/* KALENDER */
/************/

#calendar .fc-daygrid-day:hover {
  background-color: #e2f0fb;
  cursor: pointer;
}

#calendar .fc-daygrid-day.fc-day-today {
  background-color: #fff3cd !important;
}

#calendar a {
  color: #212529 !important;
  text-decoration: none !important;
}

#calendar .fc-daygrid-event-dot {
  border-color: #198754 !important;
}

#calendar .fc-event-title {
  color: #198754 !important;
  font-weight: 500;
}

#calendar .fc-event.kein-termin {
  background-color: transparent !important;
  border: none !important;
  pointer-events: none;
}

#calendar .fc-event.kein-termin .fc-event-title {
  color: #999 !important;
  font-weight: 500;
  font-size: 0.95rem;
}

/* VORTEILE-BOX */
/****************/

.vorteile-box {
  background-color: rgb(227, 252, 237);
  border-left: 6px solid #2ecc71;
  padding: 7px;
  max-width: 500px;
  margin: 20px 0;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
  font-family: Arial, sans-serif;
  font-size: small;
}

.vorteile-box h2 {
  color: lightgray;
  text-align: center;
  margin-bottom: 10px;
}

.vorteile-box ul {
  list-style: none;
  padding: 0;
}

.vorteile-box li {
  margin: 10px 0;
  padding-left: 10px;
  position: relative;
  color: grey;
  font-size: 0.9rem;
}

.vorteile-mobile {
  display: none;
}

@media (max-width: 768px) {
  .vorteile-desktop {
    display: none;
  }

  .vorteile-mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #f8f9fa !important;
    width: 100%;
    overflow-x: hidden;
  }

  .step.active {
    width: 92vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    /*background-color: white !important;*/
    padding: 1rem;
    box-sizing: border-box;
  }

  /* Optional – andere .step ausblenden */
  .step:not(.active) {
    display: none !important;
  }
}

#footer {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
  text-align: center;
}

.footer-links {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.footer-links a {
  color: #444;
  text-decoration: none;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}
.footer-links a:hover {
  text-decoration: underline;
}
