/* HERO */
.sub-hero {
    background: url('Assets/banking-bg.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-hero .overlay {
    background: #0b1c39;
    padding: 40px;
    text-align: center;
    color: #c9a74d;
    width: 100%;
}

/* SECTION */
.practice-section {
    padding: 60px 0;
}

.practice-section.light {
    background: #f5f5f5;
}

.practice-section h2 {
    margin-bottom: 15px;
    position: relative;
}

/* underline */
.practice-section h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin-top: 8px;
}

/* TEXT */
.practice-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

/* GRID */
.service-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.service-box {
    background: #fff;
    padding: 15px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.service-box i {
    color: #d4af37;
}

/* HOVER */
.service-box:hover {
    transform: translateY(-5px);
}

/* CTA */
.cta {
    text-align: center;
    padding: 60px 20px;
    background: #0f172a;
    color: #fff;
}

.cta .btn {
    display: inline-block;
    margin-top: 15px;
}