/* Business Internet Banking Page Styles (copied from html/Ways to Bank) */

/* Breadcrumb */
.breadcrumb-section {
    background: #f9fafb;
}

.breadcrumb-section a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Hero Banner Section */
.hero-banner {
    background: linear-gradient(to right, #fed7aa, #fef3c7);
}

/* Page Title Underline Animation */
.w-16 {
    animation: expandWidth 0.8s ease;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 4rem;
    }
}

/* ...remaining rules copied from original file ... */
