.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-right: 12px;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon.footer {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-info .social-icon svg {
    fill: white;
}

/* Handle the fill color for dark backgrounds */
.footer-social .social-icon svg {
    fill: white;
}