/* Kontakt Sektion */
.kontakt-content {
	display: flex; 
	gap: 40px; 
	align-items: center;
}

/* Über uns Inhalt */
.kontakt-text {
    flex: 7; 
	line-height: 1.6;
    color: #333333;
}

.kontakt-image {
	flex: 3; 
}

.kontakt-section {
	padding-top: 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.kontakt-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.kontakt-section p {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
}

.kontakt-section a {
    color: #0066cc;
    text-decoration: none;
}

.kontakt-section a:hover {
    text-decoration: underline;
}

/* Ansprechpartner Sektion */
.ansprechpartner-section {
	padding-top: 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.ansprechpartner-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.ansprechpartner-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
}

.ansprechpartner-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80%;
    max-width: 600px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.ansprechpartner-item img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-right: 15px;
}

.ansprechpartner-info p {
    margin: 0;
}

.ansprechpartner-info a {
    color: #0066cc;
    text-decoration: none;
}

.ansprechpartner-info a:hover {
    text-decoration: underline;
}

/* Anfahrtskizze Sektion */
.anfahrt-section {
    padding-top: 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.anfahrt-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.anfahrt-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Alternative Ansprechpartner Sektion */
.ansprechpartner-section-alt {
	padding-top: 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.ansprechpartner-section-alt h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.ansprechpartner-container-alt {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
}

.ansprechpartner-item-alt {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.ansprechpartner-image-alt img {
    width: 150px;
    height: 150px;
    border-radius: 0;
}

.ansprechpartner-info-alt p {
    margin: 0;
}

.ansprechpartner-info-alt a {
    color: #0066cc;
    text-decoration: none;
}

.ansprechpartner-info-alt a:hover {
    text-decoration: underline;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .kontakt-section,
    .ansprechpartner-section,
    .ansprechpartner-section-alt,
    .anfahrt-section {
        text-align: center;
    }

    .ansprechpartner-container,
    .ansprechpartner-container-alt {
        align-items: center;
    }

    .ansprechpartner-item,
    .ansprechpartner-item-alt {
        max-width: 100%;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .ansprechpartner-image-alt img {
        width: 100px;
        height: 100px;
    }

    .ansprechpartner-info-alt {
        text-align: center;
    }
}
