.section {
    padding: 60px 0;
}

.carousel-item {
    padding: 30px 0;
    min-height: 200px;
}

.carousel-item img {
    height: 80px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.carousel-item h5 {
    margin-top: 15px;
}

blockquote {
    border-left: 5px solid #eee;
    padding-left: 15px;
    margin-left: 15px;
    color: #555;
    background-color: #e7e7e7;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}

blockquote footer {
    font-size: 0.9em;
    color: #777;
}

.carousel-indicators li {
    background-color: #6c757d; /* Grau für die Indikatoren */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none; /* Entfernt das Standard-Bild */
    border: solid #6c757d; /* Setzt die Farbe auf Grau */
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
}

.carousel-control-prev-icon {
    transform: rotate(135deg); /* Dreht den Pfeil für die vorherige Schaltfläche */
}

.carousel-control-next-icon {
    transform: rotate(-45deg); /* Dreht den Pfeil für die nächste Schaltfläche */
}

.carousel-indicators {
    bottom: -40px;
    padding: 10px;
    border-radius: 10px;
    background: none; /* Entfernt den Hintergrund */
}

.carousel-controls {
    position: absolute;
    bottom: -40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
    blockquote {
        border-left: 0px;
        margin-left: 0px;
    }
}