/* Vorteile */
.feature-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 350px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.feature-box img {
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.col-12.col-md-4.mb-4 {
  margin-bottom: 30px;  
}

@media (max-width: 767px) {
  .feature-box {
      min-height: 300px;
  }
  .col-12.col-md-4.mb-4 {
      margin-bottom: 20px;
  }
}

/* Galerie */
.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.gallery-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 5px solid #454545;
}

.gallery-card-body {
    padding: 20px;
    text-align: center;
}

.gallery-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.gallery-card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.custom-bullet {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active.custom-bullet {
    background-color: #0056b3;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.6);
}

/* Unser Leistungsspektrum */
.pricing-seven {
    background-color: #f9f9f9;
  }

  
  .section-title .sub-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  
 
  
  .card {
    border-radius: 10px;
  }
  
  .card-img-top {
    height: 200px;
    object-fit: cover;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .card-footer .btn {
    border-radius: 5px;
  }
  
  .bi-check-circle {
    margin-right: 0.5rem;
  }
  
  .list-unstyled li {
    margin-bottom: 0.75rem;
  }
  
 .list-style-three li {
    color: black;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .list-style-three li:before {
    width: 25px;
    height: 25px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    color: #CC4F5A;
    margin-top: 2px;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    margin-right: 15px;
  }
  

