.contact-section h1 {
    color: #003f7d;
    font-weight: 700;
}

.contact-card {
    background-color: #fff;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-heading {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    font-weight: 600;
}

.company-info p {
    line-height: 1.5;
}

.person-card {
    padding: 12px;
    border-radius: 6px;
    background-color: #f8f9fa;
    margin-bottom: 15px;
    border-left: 3px solid #003f7d;
    transition: all 0.2s ease;
}

.person-card:hover {
    background-color: #e9ecef;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.person-card p {
    margin-bottom: 5px;
    line-height: 1.4;
}

.person-card a {
    color: #003f7d;
    text-decoration: none;
}

.person-card a:hover {
    text-decoration: underline;
}

.department-info h3 {
    margin-top: 25px;
    font-weight: 600;
}

.contact-map {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
