.contact-section {
    background-color: #f8f9fa;
}

.section-title {
    color: #003f7d;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 1.2rem;
    color: #0066cc;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #003f7d, transparent);
    margin: 2rem 0;
    opacity: 0.3;
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 18px;
    height: 100%;
}

.card-header-custom {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.card-header-custom h3 {
    color: #003f7d;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 5px 0;
}

.card-header-custom .subtitle {
    color: #6c757d;
    font-size: 0.85rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.info-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #003f7d 0%, #0066cc 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    color: #fff;
    font-size: 0.85rem;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-content strong {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content span {
    color: #333;
    font-size: 0.95rem;
}

.divider {
    height: 1px;
    background: #e9ecef;
    margin: 16px 0;
}

.person-section h5 {
    color: #003f7d;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.person-section h5 i {
    font-size: 0.85rem;
    color: #0066cc;
}

.person-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 14px;
    border-left: 3px solid #003f7d;
    margin-bottom: 10px;
}

.person-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.person-role {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.person-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.person-contact a {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.person-contact a:hover {
    color: #003f7d;
}

.person-contact a i {
    color: #0066cc;
    font-size: 0.75rem;
    width: 14px;
}

.person-contact.standalone {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 14px;
    border-left: 3px solid #003f7d;
}

.billing-info h5 {
    color: #003f7d;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.billing-row {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.billing-row span {
    color: #6c757d;
}

.billing-info small {
    display: block;
    margin-top: 8px;
    font-size: 0.75rem;
}

.map-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-card h4 {
    color: #003f7d;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-card h4 i {
    font-size: 0.95rem;
    color: #0066cc;
}

.map-container {
    flex: 1;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.departments-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 18px;
}

.departments-card>h4 {
    color: #003f7d;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.departments-card>h4 i {
    color: #0066cc;
}

.department-box {
    background: #fafbfc;
    border-radius: 10px;
    padding: 16px;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s;
}

.department-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dept-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.dept-header i {
    color: #003f7d;
    font-size: 1rem;
}

.dept-header span {
    font-weight: 600;
    color: #003f7d;
    font-size: 0.95rem;
}

.dept-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0066cc;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    padding: 6px 10px;
    background: #e7f3ff;
    border-radius: 6px;
    transition: background 0.2s;
}

.dept-email:hover {
    background: #d4ebff;
    color: #004499;
}

.dept-email i {
    font-size: 0.75rem;
}

@media (max-width: 991px) {

    .contact-card,
    .map-card {
        margin-bottom: 20px;
    }

    .map-container {
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.3rem;
    }

    .contact-card,
    .map-card,
    .departments-card {
        padding: 18px;
    }

    .info-row {
        gap: 10px;
    }

    .info-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .info-icon i {
        font-size: 0.75rem;
    }
}