.cse-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.cse-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.cse-slide.active {
    opacity: 1;
    z-index: 1;
}

.cse-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cse-content {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.cse-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cse-content p {
    font-size: 1.2rem;
}
