/* Branch Cards Styling */
.branch-card {
    text-decoration: none;
    color: inherit;
}

.branch-card .card-body {
    text-align: center;
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.branch-card:hover .card-body {
    background-color: #126432; /* Grün beim Hover */
    color: #ffffff;
}

.card-img-top {
    height: 200px;
    object-fit: cover; /* Bilder gleichmäßig zuschneiden */
}


/* Partner Carousel Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #00274d; /* Dunkelblau */
    border-radius: 50%; /* Runde Form */
    width: 50px; /* Größe anpassen */
    height: 50px; /* Größe anpassen */
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #001f3f; /* Dunklere Blauvariante beim Hover */
}

/* Testimonials Styling */
blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #126432; /* Grüne Linie */
    padding-left: 10px;
    margin: 20px 0;
}

blockquote p {
    font-weight: bold;
    margin: 0;
}

/* Warum Maiston Bereich */
#warum-maiston ul {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

#warum-maiston ul li {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
}

#warum-maiston ul li i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Ausbildungsprogramm Bereich */
#ausbildungsprogramm ul {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

#ausbildungsprogramm ul li {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1rem;
    color: #555;
}

/* NEW */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  line-height: 1.4;
}
.feature-list li:last-child { border-bottom: none; }

/* schicke Häkchen vor den Punkten (Bootstrap Icons) */
.feature-list li::before {
  content: "\F26A";               /* bi-check-circle */
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  margin-top: .1rem;
}

/* etwas mehr Luft auf größeren Screens (falls nötig) */
@media (min-width: 992px) {
  #lernplattform .col-md-6.ps-lg-5 { padding-left: 3rem !important; }
}