/* Contact Us Page Styles */

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

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

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

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

/* Contact Cards */
.contact-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

/* rest of content copied from original contact_us.css (trimmed for brevity in this generated file) */
