.lcus-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.slider-title {
    margin-bottom: 15px;
}

.lcus-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-item {
    display: none;
    position: relative;
    width: 100%;
}

.slide-item.active {
    display: block;
}

.slide-item img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
}

.slide-content h3 {
    margin: 0 0 10px 0;
    color: #fff;
}

.slide-content p {
    margin: 0;
    color: #fff;
}

.slider-dots {
    text-align: center;
    padding: 10px 0;
}

.slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: #333;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}
