.carousel {
    margin-bottom: 30px;
}

.carousel-inner {
    overflow: hidden;
}

.carousel-item img {
    object-position: center;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
    bottom: 20px;
}

.carousel-caption h5 {
    font-size: 24px;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 16px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        padding: 10px;
        bottom: 10px;
    }
    
    .carousel-caption h5 {
        font-size: 18px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
}