.two-column-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
}

/* Linke Spalte (Text) */
.left-column {
    flex: 1 1 50%; /* Verkleinert die Breite der linken Spalte */
    min-width: 300px;
}

/* Rechte Spalte (Bild und Adresse) */
.right-column {
    flex: 0 0 30%; /* Feste Breite der rechten Spalte */
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Abstand zwischen Bild und Adressblock */
}

/* Bild-Bereich */
.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #4058B3;
    box-shadow: 0 4px 8px rgba(92, 120, 158, 0.2);
    padding: 4px;
    background-color: #fff;
}

/* Responsive Design für schmale Bildschirme */
@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%;
        flex: 1 1 100%; /* Volle Breite auf mobilen Geräten */
    }

    /* Reihenfolge für mobile Ansicht: Text, Bild, Adressblock */
    .left-column {
        order: 1;
    }

    .image-section {
        order: 2;
    }

    .contact-box {
        order: 3;
    }
}