body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #008080;
    color: white;
    padding: 20px;
    text-align: center;
}

h1, h2 {
    margin: 0;
    padding: 20px;
}

#intro, #features, #gallery, #discription, #contact {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#contact {
        margin-bottom: 60px;
}
ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.swiper-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; /* Verhindert Überlaufen */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Skalierung der Bilder */
    border-radius: 10px;
}

.caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center; /* Text zentrieren */
}

.swiper-button-next,
.swiper-button-prev {
    color: #008080; 
    top: 50%; 
    transform: translateY(-50%); 
}

footer {
    background-color: #008080;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 1;
}

/* Media Queries für responsive Anpassungen */
@media (max-width: 768px) {
    .swiper-container {
        height: 300px; /* Reduziere die Höhe der Galerie */
    }

    .caption {
        font-size: 14px; /* Kleinere Schriftgröße für Bildunterschriften */
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .swiper-container {
        height: 200px; /* Noch kleinere Höhe für sehr kleine Bildschirme */
    }

    .caption {
        font-size: 12px; /* Noch kleinere Schriftgröße für Bildunterschriften */
        padding: 2px 4px;
    }
}
/* Allgemeine Stile bleiben unverändert */

.feature {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
}

.feature-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}

.feature-summary {
    font-style: italic;
    color: #555;
    margin: 5px 0;
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 10px; /* Einrückung für den Inhalt */
}

.feature-content p {
    margin: 10px 0;
}

.toggle-icon {
    font-weight: bold;
    font-size: 18px;
}

