.overseas-banner {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.section-title {
    font-size: 2rem;
    color: #006FBA;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.branch-card {
    background: #ffffff;
    border-left: 6px solid #006FBA;
    border-radius: 12px;
    padding: 20px 25px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.branch-flag {
    height: 40px;
}

.branch-logo {
    max-height: 36px;
}

.branch-country {
    font-size: 1.4rem;
    font-weight: bold;
    color: #023047;
}

.branch-subheading {
    font-size: 1.05rem;
    font-weight: 500;
    color: #006FBA;
}

.branch-content p {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.branch-content i {
    color: #006FBA;
    margin-right: 8px;
    width: 20px;
}

.branch-content strong {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: #005f73;
}

.branch-content a {
    color: #006FBA;
    text-decoration: none;
}

.branch-content a:hover {
    text-decoration: underline;
}

.container-fluid.banner {
    background: linear-gradient(120deg, #006FBA, #4CB748);
}

.container-fluid.banner img {
    opacity: 0.9;
}