/* Contacts page specific styles */
.contact-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    height: 100%;
}

.contact-title {
    color: rgb(33, 37, 41);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    color: #333;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-text {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-icon {
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.contact-link {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-card {
        margin-bottom: 1.5rem;
    }
    
    .map-container {
        height: 400px;
    }
} 