.cs2-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #000;
    font-family: Arial, sans-serif;
}

.cs2-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cs2-slide.active {
    opacity: 1;
}

.cs2-content {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 420px;
}

.cs2-content h2 {
    font-size: 44px;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    background: #f39c12;
    color: #000;
    padding: 6px 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #f39c12;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.cs2-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 32px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 10;
}

.cs2-arrow.left {
    left: 10px;
}

.cs2-arrow.right {
    right: 10px;
}
