body,
html {
  background-color: white !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;

}

.btn-primary {
  background-color: #044C7E;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
}

.preis-page {
  padding-top: 50px;
  background-color: #e6f0fa;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container zentrieren */
.preis-page .container {
  max-width: 1000px;
  margin: 0 auto;
}
.card{
  margin-top: 200px;

}

/* Karten */
.preis-page .card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.preis-page .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.fixed-image {
    position: fixed;
    /* bleibt auch beim Scrollen unten links */
    bottom: 5%;
    left: 1.5%;
    z-index: 9999;
    /* liegt über allen anderen Elementen */
}

.fixed-image img {
    width: 60px;
    /* Icon-Größe */
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.fixed-image img:hover {
    transform: scale(1.1);
    /* Hover-Effekt */
}


/* Karten-Header */
.preis-page .card-header {
  background-color: #044C7E;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 20px;
  text-align: center;
}

/* Abschnittstitel */
.preis-page .section-title {
  margin-top: 20px;
  font-weight: 600;
  border-bottom: 2px solid #044C7E;
  padding-bottom: 5px;
  display: inline-block;
  color: #044C7E;
}

/* List-Items */
.preis-page .list-group-item {
  display: flex;
  justify-content: space-between;
  /* Text links, Preis rechts */
  align-items: center;
  padding: 15px 20px;
  border: none;
  background: #f9f9fb;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.angebot {
  position: static;
  font-size: 1rem;
  background: transparent;
  padding: 0;
}

/* Preis Wrapper: 1€ + Originalpreis */
.price-wrapper {
  display: flex;
  gap: 10px;
  /* Abstand zwischen 1€ und Originalpreis */
  align-items: center;
}

/* Neuer Preis (1€) */
.price {
  color: #044C7E;
  font-weight: 700;
}

/* Originalpreis durchgestrichen */
.original-price {
  text-decoration: line-through;
  color: #999;
  font-weight: 500;
}

/* Optional: Hover-Effekt auf List-Items */
.preis-page .list-group-item:hover {
  background-color: #e0eaf7;
}

.duration {
  font-size: 1rem; /* normale Größe */
}

/* Bei max. 420px Bildschirmbreite */
@media (max-width: 420px) {
  .duration {
    display: block;   /* br-Effekt */
    font-size: 0.85rem; /* kleiner machen */
   
  }
}

@media (max-width: 621px) {
  .angebot {
    color: red;
    position: absolute;
    top: 0;
    /* Beispielwerte */
    right: 10px;
    font-size: 0.8rem;
    background: #fff2;
    /* optional */
    padding: 4px 8px;
    border-radius: 4px;
  }
}

@media (max-width: 375px) {
  .preis-page .card-header{
    font-size: 1.2rem;
  }
}
