.social-media-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    font-size: 1.2rem;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #43c06d;
    transition: background 0.2s, transform 0.2s;
}

.social-icon:hover {
    background: #2ea95a;
    transform: translateY(-3px);
}

/* Dark theme for social icons */
.social-icons-dark .social-icon {
    background: #1b2733;
}

.social-icons-dark .social-icon:hover {
    background: #43c06d;
}
