.two-column-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
}

/* Linke Spalte (Text und Karte) */
.left-column {
    flex: 1 1 60%;
    min-width: 300px;
}

/* Rechte Spalte (Adresse und Bild) */
.right-column {
    flex: 0 0 30%; /* Feste Breite, nicht wachsen oder schrumpfen */
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-self: flex-start; /* Am oberen Rand ausrichten */
    position: -webkit-sticky; /* Für Safari */
    position: sticky;
    top: 20px; /* Abstand vom oberen Rand */
}

/* Karten-Bereich */
.map-section {
    margin-top: 20px;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: 1px solid black;
    border-radius: 10px;
}

/* Bild-Bereich */
.image-section {
    margin-top: 20px;
    width: 100%; /* Volle Breite in der rechten Spalte */
}

.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;
}

/* Für die Kontaktbox */
.contact-box {
    width: 100%; /* Volle Breite in der rechten Spalte */
}

/* Responsive Design für schmale Bildschirme */
@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
    }
    
    /* Linke Spalte ausblenden, um Elemente einzeln zu steuern */
    .left-column, .right-column {
        width: 100%;
    }
    
    /* Manuelle Reihenfolge für mobile Ansicht */
    .left-column .section:not(.map-section) {
        order: 1;
    }
    
    .left-column .map-section {
        order: 2;
    }
    
    .right-column .contact-box {
        order: 3;
    }
    
    .right-column .image-section {
        order: 4;
    }
    .right-column {
        position: static; /* Mobile: Normal scrollen */
    }
    
    /* Abstände für mobile Ansicht */
    .section:not(.map-section),
    .map-section,
    .contact-box,
    .image-section {
        margin-bottom: 20px;
    }
}