/* Social Media Icons */
.icon-facebook:before {
    content: "\f39e";
    font-family: "Font Awesome 5 Brands";
}

.icon-instagram:before {
    content: "\f16d";
    font-family: "Font Awesome 5 Brands";
}

.icon-twitter:before {
    content: "\f099";
    font-family: "Font Awesome 5 Brands";
}

/* Alternative solution using Unicode characters */
.alt-icon-facebook:before {
    content: "\25A0"; /* Unicode square as fallback */
}

.alt-icon-instagram:before {
    content: "\25CB"; /* Unicode circle as fallback */
}

.alt-icon-twitter:before {
    content: "\2713"; /* Unicode checkmark as fallback */
}