.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.carousel-slide {
    display: none;
    position: relative;
    width: 100%;
}
.carousel-slide img {
    width: 100%;
    height: auto;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
}
.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}
.carousel-pagination {
    text-align: center;
    margin-top: 10px;
}
.carousel-pagination span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.carousel-pagination span.active {
    background-color: #333;
}