   /* Custom styles for gradient text and responsive design */
   .gradient-text {
       background: linear-gradient(180deg, rgba(193, 165, 219, 1) 0%, rgba(181, 153, 206, 1) 0%, rgba(173, 145, 198, 1) 0%, rgba(43, 13, 63, 1) 100%);
       -webkit-background-clip: text;
       background-clip: text;
       -webkit-text-fill-color: transparent;
       color: transparent;
   }

   /* Smooth scrolling */
   html {
       scroll-behavior: smooth;
   }

   /* Mobile menu animations */
   .mobile-menu {
       transform: translateX(-100%);
       transition: transform 0.3s ease-in-out;
   }

   .mobile-menu.open {
       transform: translateX(0);
   }

   /* Hide hamburger on desktop */
   @media (min-width: 768px) {
       .hamburger-menu {
           display: none;
       }
   }

   /* Hide desktop nav on mobile */
   @media (max-width: 767px) {
       .desktop-nav {
           display: none !important;
       }
   }

   /* Responsive text sizes */
   @media (max-width: 768px) {
       .hero-title {
           font-size: 2.5rem !important;
           line-height: 3rem !important;
       }

       .section-title {
           font-size: 2rem !important;
           line-height: 2.5rem !important;
       }

       .subsection-title {
           font-size: 1.5rem !important;
           line-height: 2rem !important;
       }
   }

   /* FAQ simple text styling */
   .faq-item {
       border-left: 4px solid #c1a7db;
       padding-left: 1rem;
       margin-bottom: 2rem;
   }