.two-column-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
}

/* Linke Spalte (Text) */
.left-column {
    flex: 1 1 60%;
    min-width: 300px;
}

/* Rechte Spalte (Kontakt und Bild) */
.right-column {
    flex: 0 0 30%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Bild in der linken Spalte */
.image-section-left {
    margin: 25px 0;
}

.image-section-left img {
    width: 100%;
    max-width: 600px;
    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;
}

/* Umweltschutz-Schwerpunkte */
.environmental-focus {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.focus-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 200px;
    padding: 15px;
    background-color: #f5f7fa;
    border-radius: 8px;
    border-left: 4px solid #4058B3;
    box-shadow: 0 2px 4px rgba(92, 120, 158, 0.1);
}

.focus-item h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #4058B3;
}

.focus-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Kontaktbox in der rechten Spalte */
.contact-box {
    padding: 20px;
    border-radius: 8px;
    background-color: #f5f7fa;
    border: 1px solid #e1e5eb;
    box-shadow: 0 2px 4px rgba(92, 120, 158, 0.1);
    text-align: center;
}

.contact-box h3 {
    margin-top: 0;
    color: #4058B3;
}

/* Bild-Bereich in der rechten Spalte */
.image-section {
    width: 100%;
    margin-top: 10px;
}

.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%;
    }

    .environmental-focus {
        flex-direction: column;
    }

    .focus-item {
        width: 100%;
    }

    .contact-box {
        order: 2;
    }

    .image-section {
        order: 3;
    }
}