.contact-card-section {
    display: flex;
    gap: 14px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.contact-card-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Left icon */
.left-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #fde7f3;
    color: #c552a0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-card-section:hover .left-icon {
    background: #c552a0;
    color: #fff;
}

/* Text */
.section-content h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
}

.section-content p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.6;
}

.section-content a {
    color: #6b7280;
    font-weight: 500;
    text-decoration: none;
}

.section-content a:hover {
    text-decoration: underline;
}
