/* Contact Hero Section */
.contact-hero {
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Contact Cards */
.card {
    background-color: #FAFBFE;
}

.card-body p.text-muted {
    font-family: 'Inter', sans-serif;
}