.vsla-container {
    padding: 80px 20px;
    background: #f8f8f8;
}

.vsla-hero {
    text-align: center;
    background: #1d1595;
    color: #fff;
    padding: 40px;
}

.vsla-sub-title {
    color: #f5d046;
    font-weight: 600;
}

.vsla-steps-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 60px 0;
    flex-wrap: wrap;
}

.vsla-step-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vsla-services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vsla-service-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* =========================
   CREATE ACCOUNT HEADER
========================= */

.vsla-create-account-header {
    text-align: center;
    margin: 60px 0 40px;
}

.vsla-create-title {
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    color: #c95a5a; /* soft red like design */
    padding: 12px 28px;
    border: 3px solid #8b1e1e; /* dark red border */
    border-radius: 4px;
    background: transparent;
    line-height: 1.3;
}

/* =========================
   GROUP SERVICES HEADER
========================= */

.vsla-group-services-header {
    margin: 80px 0 60px;
    position: relative;
}

/* Yellow label */
.vsla-group-label {
    display: inline-block;
    background: #f4d03f;
    color: #1d1595;
    font-weight: 700;
    font-size: 26px;
    padding: 10px 24px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Main blue heading */
.vsla-group-title {
    font-size: 36px;
    font-weight: 700;
    color: #1d1595;
    padding: 18px 28px;
    border: 3px solid #8b1e1e; /* same red outline */
    border-radius: 4px;
    background: rgba(255,255,255,0.7);
    line-height: 1.3;
}

@media (max-width: 768px) {

    .vsla-create-title,
    .vsla-group-title {
        font-size: 22px;
        padding: 10px 16px;
    }

    .vsla-group-label {
        font-size: 18px;
        padding: 8px 16px;
    }
}
