/* CSS for Contact Us Section */
.contact-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.contact-item i {
    font-size: 20px;
    color: #007bff; /* Use a color that matches your theme */
    margin-right: 15px;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.contact-item p {
    margin: 0;
    color: #444;
    font-weight: 500;
}

.contact-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #0056b3;
}

/* Responsive styling */
@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
        width: auto;
        margin: 20px;
    }
}
