.sp-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
}

.sp-nav .navbar-brand,
.sp-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.sp-hero {
    padding: 60px 0 80px;
    background: #fff;
    overflow: hidden;
}

.sp-breadcrumb {
    color: #1e63e6;
    font-size: 13px;
    margin-bottom: 20px;
}

.sp-title {
    color: #1e63e6;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.3;
    margin: 0;
}

/* Hero Slider Track */
.sp-slider-viewport {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    padding-bottom: 10px;
}

.sp-slider-viewport::-webkit-scrollbar {
    display: none;
    /* WebKit */
}

.sp-slider-track {
    display: flex;
    gap: 16px;
    padding-left: 30px;
}

.sp-slider-card {
    min-width: 240px;
    height: 240px;
    background: #F2F8FF;
    border: 1px solid #cfe0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e63e6;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s;
}

.sp-slider-card:hover {
    background: #eef5ff;
    border-color: #1e63e6;
    color: #0d6efd;
}

/* Arrow Button */
.sp-slider-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: -4px 0 16px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(13, 110, 253, 0.3);
    z-index: 10;
}

@media(max-width: 991px) {
    .sp-slider-track {
        padding-left: 0;
    }
}

.sp-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0 80px;
}

.sp-card {
    background: repeating-linear-gradient(-45deg,
            #eef5ff,
            #eef5ff 4px,
            #F2F8FF 4px,
            #F2F8FF 8px);
    border: none;
    border-radius: 0;
    padding: 60px 40px;
    position: relative;
    width: 100%;
}

.sp-card h4 {
    color: #1e63e6;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 16px;
}

.sp-card p {
    color: #1e63e6;
    font-size: 15px;
    max-width: 420px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.sp-link {
    color: #0d6efd;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.sp-link i {
    font-size: 12px;
}

@media (max-width: 576px) {
    .sp-card {
        padding: 40px 20px;
    }
}