.start-auswahl{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.start-auswahl .karte{
    background-color: #1a1a1a;
    padding: 30px 20px;
    border: 2px solid #fef200;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.start-auswahl .karte:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.start-auswahl i{
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fef200;
}

.start-auswahl h3{
    margin-bottom: 10px;
    color: #fff;
}

.start-auswahl p{
    font-size: 1rem;
    margin-bottom: 15px;
}

.start-auswahl .button{
    margin-top: auto;
}