.media-container {
  border-radius: 15px;
}

.media-container div{
  opacity:0.7;
  transition: 0.5s ease;
}

.media-container div:hover {
  opacity:1;
  transition: 0.5s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.client-logo img:hover {
  opacity:1;
  transition: 0.5s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.client-logo img{
opacity:0.7;
transition: 0.5s ease;
}

.pakete-grid.three-column {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.paket-card {
  flex: 1 1 30%;
  background-color: #111; /* oder dein Darkmode-Farbton */
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  color: #fff;
}

.paket-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.paket-preis {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.paket-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paket-card ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .pakete-grid.three-column {
    flex-direction: column;
  }
  .paket-card {
    flex: 1 1 100%;
  }
}
