.sc-8fda490e-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.sc-slide {
    display: flex;
    min-height: 400px;
    position: relative;
    box-sizing: border-box;
}
.sc-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.sc-content-box {
    position: relative;
    z-index: 2;
    margin-left: auto; /* Push to the right */
    width: 45%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    box-sizing: border-box;
}
.sc-content-inner {
    flex-grow: 1;
}
.sc-title {
    margin: 0 0 20px;
    font-size: 2em;
}
.sc-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}
.sc-read-more {
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}
.sc-nav-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}
.sc-btn-prev,
.sc-btn-next {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.sc-btn-prev:hover,
.sc-btn-next:hover {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sc-content-box {
        width: 100%;
        background-color: rgba(49, 99, 133, 0.9) !important; /* Force darker on mobile if needed */
    }
}