.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  /*width: 80%;*/
  border-radius: 5px; 
  margin: 0 auto;
}
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.card-one {  
  width: 80%; 
}
.card-two {  
  width: 1000px;
  padding: 30px;
}


img {
  border-radius: 5px 5px 0 0;
}

.img{
  border-radius: 0 0 0 0;
}

.container-card {
  padding: 2px 16px;
}

.body-container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background-color: cornflowerblue;
}

/* Container, der die 3 Child-Container enthält */
.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ermöglicht, dass die Child-Container bei Bedarf umbrochen werden */
    width: 100%; 
    max-width: 1800px;
    background-color: cornflowerblue;
    color: white;
    margin-top: 20px;
}

/* Jedes Child-Container, das die Karte umschließt */
.child-container-service {
    width: 50%; /* Standard-Breite der Child-Container */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Abstand zwischen den Reihen */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .child-container-service {
        width: 100%; /* Auf kleineren Bildschirmen die Container auf 45% der Breite reduzieren */
    }
    .body-container {  
        padding-top: 20px;
    }
    .card-two{
        width: 80%;
    }
}
