/* === Kontakt Seite === */

/* Hauptbereich der Kontaktinformationen */
.c_contact-info {
   max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.c_contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.c_contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.c_contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.c_contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.c_contact-info a:hover {
    text-decoration: underline;
}

/* Kontaktinformationen nebeneinander anordnen */
.contact-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact-left, .contact-right {
    width: 48%; /* Damit beide Bereiche nebeneinander passen */
}

.contact-left h3, .contact-right h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-left p, .contact-right ul {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

/* Liste der Bürozeiten */
.c_contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.c_contact-info ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

/* Google Map */
.map-container {
    margin-top: 30px;
    text-align: center;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
