
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800;900&display=swap');
        body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }

        /* Accordion Animation */
        .faq-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        details[open] + .faq-content {
            grid-template-rows: 1fr;
        }

        .faq-inner { overflow: hidden; }
        details summary::-webkit-details-marker { display: none; }
        details summary { list-style: none; outline: none; }
   