.email-contacts-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.email-contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.email-contact-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.email-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    color: #3b82f6;
    flex-shrink: 0;
}

.email-contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #3b82f6;
}

.email-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.email-contact-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.email-contact-link {
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.email-contact-link:hover {
    color: #3b82f6;
}
