.Service {
    display: flex;
    background-color: #4493e9;
    color: black;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-radius: 30px;
}

.card-Container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    align-items: stretch;
}

.card {
    display: flex;
    flex-direction: column;
    
    background-color: #BFD0E1;
    border-radius: 30px;
    padding: 30px;
    width: 30%;
    min-width: 360px; /* verhindert zu kleine Karten */
    box-sizing: border-box;
    box-shadow: 0px 0px 10px gray;
}

.card p{
    margin-bottom: 20px;
    
}

.preise{
     display: flex;
    flex-direction: column;
    
    background-color: #BFD0E1;
    border-radius: 30px;
    padding: 30px;
    width: 93%;
    margin-top: 30px;
    min-width: 360px; /* verhindert zu kleine Karten */
    box-sizing: border-box;
    box-shadow: 0px 0px 10px gray;

}





/* ======= RESPONSIVE DESIGN ======= */

/* Tablet-Ansicht */
@media (max-width: 1000px) {
    .card {
        width: 30%;
        min-width: 360px;
    }
}

/* Smartphone-Ansicht */
@media (max-width: 780px) {
    .card-Container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        height: auto;
    }

    .schalter{
        margin-top: 20px;
    }
    .preise{
        width: 80%;
        height: auto;

    }
}
