.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.glass-nav {
    background: rgba(246, 250, 254, 0.8);
    backdrop-filter: blur(20px);
}
.hero-gradient {
    background: linear-gradient(135deg, #003b72 0%, #00529b 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.faq-answer.open {
    max-height: 500px;
    opacity: 1;
}
