.carousel-container {
    margin-top: 80px;
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 80vh;
    min-height: 400px;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    width: 80%;
    max-width: 600px;
}

.slide-content h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slide-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-account {
    background-color: #ed4223;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-account:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.carousel-indicators1 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator1 {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-slides {
        height: 70vh;
    }
    
    .slide-content {
        left: 5%;
        width: 90%;
        padding: 20px;
    }
    
    .slide-content h3 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn-account {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .carousel-container {
        margin: none;
    }
}
