.flex-container {
    display: flex;
    justify-content: center; /* Zentriert die Elemente */
    align-items: stretch;
    flex-wrap: wrap; 
    gap: 20px; 
}

.innen-links,
.innen-rechts {
    flex: 1 1 40px; /* Flexibel, aber nicht kleiner als 300px */
    max-width: 820px; /* Verhindert, dass sie zu breit werden */
}

.option-box {
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff; /* Falls ein Hintergrund nötig ist */
}

.text-inhalt{
    /* background-color: aliceblue; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 250px;
}
.text-inhalt a{
    width: fit-content;
    justify-self: flex-end;
}



.innen-links img{
    width: 80%; /* Größe der Bilder angepasst */
    max-width: 300px; /* Maximale Breite für mobile Geräte */
    height: auto;
    border-radius: 5px;
}

.innen-rechts img{
    width: 80%; /* Größe der Bilder angepasst */
    max-width: 300px; /* Maximale Breite für mobile Geräte */
    height: auto;
    border-radius: 5px;
}

.flex-container a{
    margin-bottom: 2rem;
}

.option-box h3 {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 1rem;
}

.innen-links,
.innen-rechts {
    width: 49%; /* Breite für Desktop-Geräte angepasst */
    margin-bottom: 2rem;
}


@media (max-width: 768px) {
    .innen-links,
    .innen-rechts {
        width: 100%; /* Breite für mobile Geräte */
    }
}