

/* Styles for Über uns page */
.sectionGlobal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.heading-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.image-container {
    text-align: center;
	width:45%;
    margin: 2rem 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-left {
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

@media (max-width: 768px) {
    .heading-center {
        font-size: 2rem;
    }

    .text-left {
        font-size: 1rem;
    }
	
	    .image-container {
        width: 100%;
    }
}