.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.medical-glow {
    box-shadow: 0px 4px 20px rgba(0, 45, 98, 0.05);
}
.accent-stripe {
    position: relative;
}
.accent-stripe::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #00193c;
}
.accent-stripe-green::before {
    background-color: #006d43;
}
.hero-gradient {
    background: linear-gradient(135deg, #00193c 0%, #002d62 100%);
}
.service-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 20px rgba(0, 45, 98, 0.05);
}
.world-map-bg {
    background-image: url('../images/world-map.png');
    background-position: center;
    background-repeat: no-repeat;
}
#mobile-menu {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}
#mobile-menu.hidden-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}
#mobile-menu.open-menu {
    max-height: 400px;
    opacity: 1;
}
