.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #007bff;
}

.contact-info i {
    width: 20px;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.contact-card {
    transition: transform 0.2s ease-in-out;
}

.contact-card:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-info {
        margin-top: 2rem;
    }
}