/* BSA Section */
.bsa-section {
    max-width: 1300px;
    margin: 30px auto;
    padding: 30px 35px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e8edf3;
    box-shadow: 0 10px 35px rgba(20, 45, 80, 0.08);
    position: relative;
    overflow: hidden;
}

/* Blue accent */
.bsa-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #063b8f, #1677d2, #35a9e0);
}

/* Small label */
.bsa-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 13px;
    border-radius: 30px;
    background: #eef5ff;
    color: #063b8f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main heading */
.bsa-title {
    margin: 0 0 15px;
    color: #102a43;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.8px;
}

/* BSA highlighted */
.bsa-title span {
    color: #0b65c2;
}

/* Description */
.bsa-text {
     margin: 0;
    color: #526579;
    font-size: 17px;
    line-height: 1.8;
}

/* Links/buttons */
.bsa-link {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 22px;
    border-radius: 8px;
    background: #063b8f;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.bsa-link:hover {
    background: #0b65c2;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px) {
    .bsa-section {
        margin: 30px 15px;
        padding: 30px 24px;
        border-radius: 14px;
    }

    .bsa-title {
        font-size: 29px;
    }

    .bsa-text {
        font-size: 16px;
    }
}