/* Simple Icon System using CSS */
.icon-phone::before { content: "📞"; }
.icon-mail::before { content: "✉️"; }
.icon-map-pin::before { content: "📍"; }
.icon-clock::before { content: "🕐"; }
.icon-clock-large::before { content: "🕐"; }
.icon-shield::before { content: "🛡️"; }
.icon-heart::before { content: "❤️"; }
.icon-users::before { content: "👥"; }
.icon-user-check::before { content: "✅"; }
.icon-baby::before { content: "👶"; }
.icon-stethoscope::before { content: "🩺"; }
.icon-home::before { content: "🏠"; }
.icon-award::before { content: "🏆"; }
.icon-facebook::before { content: "📘"; }
.icon-twitter::before { content: "🐦"; }
.icon-instagram::before { content: "📷"; }
.icon-linkedin::before { content: "💼"; }

/* Icon Styling */
[class*="icon-"]::before {
    font-size: 1.2em;
    margin-right: 0.5em;
}

.service-icon [class*="icon-"]::before,
.feature-icon [class*="icon-"]::before,
.contact-icon [class*="icon-"]::before,
.stat-icon [class*="icon-"]::before {
    font-size: 1.5em;
    margin-right: 0;
}

.service-icon-large [class*="icon-"]::before {
    font-size: 2em;
    margin-right: 0;
}