/* Contact page styles */
.contact-page {
    background-color: #f8f9fa;
}

.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(40, 167, 69, 0.1);
    margin-right: 1rem;
}

.contact-link {
    color: #28a745;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1e7e34;
}

.contact-section {
    margin-bottom: 2rem;
}

.contact-section:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
} 