
.acs-container {
    position: relative;
    overflow: hidden;
    height: 500px;
}
.acs-background img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.acs-background img.active {
    opacity: 1;
}
.acs-cards {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 20px;
    z-index: 10;
}
.acs-cards .card {
    width: 200px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.acs-cards .card.active {
    transform: scale(1.05);
}
.acs-cards .card img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.acs-cards .info {
    padding: 10px;
}
