body {
    font-family: sans-serif;
    margin: 0;
    background-color: #E0FFFF; /* Heller Türkis-Ton */
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-title {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
}

header {
    background-color: #40E0D0; /* Mittlerer Türkis-Ton */
    color: white;
    padding: 1rem 0;
}

.logo {
    max-height: 80px;
    margin-bottom: 0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

section {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

section:nth-child(even) {
    background-color: #F0FFFF;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #008080; /* Dunkler Türkis-Ton */
}

/* Willkommen Sektion */
.welcome-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.welcome-text {
    flex: 1;
}
.welcome-image img {
    max-width: 100%;
    border-radius: 8px;
}

/* Leistungen Sektion */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.leistung-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.leistung-icon {
    font-size: 3em;
    color: #40E0D0;
}

.leistung-item h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #008080;
}

/* Termine Sektion */
.termine-info {
    text-align: center;
}

.termine-info table {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    border-collapse: collapse;
}

.termine-info td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}


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

.kontaktdaten {
    flex: 1;
    text-align: left;
}

.anfahrt-map {
    flex: 1;
    min-height: 300px;
}

.anfahrt-map iframe {
    border-radius: 8px;
}

#impressionen .splide__slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

#leistungen ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#leistungen li {
    margin-bottom: 10px;
}

#kontakt {
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    font-size: 0.9em;
}

footer a {
    color: #008080;
}

@media (max-width: 768px) {
    .kontakt-flex {
        flex-direction: column;
    }

    header .container {
        flex-direction: column;
        gap: 10px;
    }

    header h1 {
        font-size: 2em;
    }
}

@media (min-width: 768px) {
    .col-wochentag {
        width: 200px;
    }

}
