.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #211a52;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-button:hover {
    background: #211a52;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    height: fit-content;
    width: fit-content;
    gap: 12px;
    z-index: 10;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-dot {
    padding: 0;
    margin: 0;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #211a52;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.carousel-dot:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.carousel-dot.active {
    opacity: 1;
    transform: scale(1.2);
    background: #211a52;
}

/* Responsive styles */
@media (max-width: 768px) {
    .carousel {
        height: 350px;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .carousel-button.prev {
        left: 10px;
    }

    .carousel-button.next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 10px;
        padding: 6px 12px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}