body, html { overflow-y: auto !important; overflow-x: hidden !important; } 
/* Base Custom Styles */  /* Custom Scrollbar for a premium feel */ ::-webkit-scrollbar {     width: 8px; } ::-webkit-scrollbar-track {     background: #f8fafc;  } ::-webkit-scrollbar-thumb {     background: #cbd5e1;      border-radius: 4px; } ::-webkit-scrollbar-thumb:hover {     background: #94a3b8;  }  /* Glassmorphism Utilities */ .glass {     background: rgba(255, 255, 255, 0.7);     backdrop-filter: blur(12px);     -webkit-backdrop-filter: blur(12px);     border: 1px solid rgba(255, 255, 255, 0.4); }  .glass-dark {     background: rgba(15, 79, 148, 0.75);     backdrop-filter: blur(12px);     -webkit-backdrop-filter: blur(12px);     border: 1px solid rgba(255, 255, 255, 0.15); }  /* Text Gradients */ .text-gradient {     background-clip: text;     -webkit-background-clip: text;     -webkit-text-fill-color: transparent; }  /* Accordion transition for FAQ */ .accordion-content {     transition: max-height 0.3s ease-out, padding 0.3s ease; }
