/* Styles for ueber-uns page */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 0 0 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        flex: none;
        margin-top: 20px;
    }
}