.contact-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.contact-container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-header h2 i {
    margin-right: 10px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background-color: #e0f7fa;
}

.contact-card i {
    font-size: 2rem;
    color: #00796b;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-card a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}
  
