/* Hide social media icons in footer - more specific targeting */
footer a:nth-last-child(3),
footer a:nth-last-child(2),
footer a:nth-last-child(1) {
    display: none !important;
}

/* Alternative approach - hide the last 3 links in footer */
.flex.gap-6 a {
    display: none !important;
}

/* Hide the entire social media container */
div.flex.justify-center.gap-6 {
    display: none !important;
}

/* Hide empty anchor tags */
a:empty {
    display: none !important;
}

/* Additional targeting for social icons */
section#contact div.flex.justify-center.gap-6 {
    display: none !important;
}

/* Hide any remaining social links */
a[href="#"] {
    display: none !important;
}

