:root {
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(to right, #7c3aed, #ec4899);
  }

  * {
    box-sizing: border-box;
  }

  /* Override Bootstrap defaults */
  body {
    margin: 0 !important;
    font-family: 'Inter', sans-serif !important;
    background-color: #0f0f0f !important;
    color: white !important;
    line-height: 1.6 !important;
  }

  /* Override Bootstrap navbar styles */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    background: var(--glass) !important;
    border: 1px solid var(--border) !important;
    border-radius: 1rem !important;
    padding: 1rem 0 !important;
  }

  /* Override Bootstrap navbar container */
  .navbar .container,
  .navbar .container-fluid {
    max-width: 1200px !important;
    margin: auto !important;
    padding: 0 1.5rem !important;
  }

  /* Override Bootstrap navbar brand */
  .navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    text-decoration: none !important;
    color: inherit !important;
  }

  /* Override Bootstrap navbar nav */
  .navbar-nav {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 0.75rem !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    color: white !important;
    text-decoration: none !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
  }

  .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #9333ea44 !important;
    color: white !important;
  }

  /* Override Bootstrap card styles */
  .card {
    background: var(--glass) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--border) !important;
    border-radius: 1rem !important;
    color: white !important;
  }

  .card-body {
    color: white !important;
  }

  .card-title {
    color: white !important;
  }

  .card-text {
    color: #d8b4fe !important;
  }

  /* Override Bootstrap button styles */
  .btn {
    border-radius: 0.75rem !important;
    transition: all 0.3s ease !important;
  }

  .btn-primary {
    background: var(--gradient) !important;
    border: none !important;
    box-shadow: 0 0 10px rgba(192, 132, 252, 0.4) !important;
  }

  /* Override Bootstrap accordion styles */
  .accordion-item {
    background: var(--glass) !important;
    border: 1px solid var(--border) !important;
    color: white !important;
  }

  .accordion-button {
    background: var(--glass) !important;
    color: white !important;
    border: none !important;
  }

  .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
  }

  .accordion-body {
    background: var(--glass) !important;
    color: #d8b4fe !important;
  }

  /* Override Bootstrap container */
  .container {
    max-width: 1200px !important;
  }

  /* Override Bootstrap text colors */
  .text-white {
    color: white !important;
  }

  .text-muted {
    color: #d8b4fe !important;
  }

  /* Override Bootstrap background colors */
  .bg-dark {
    background-color: #0f0f0f !important;
  }

  .bg-light {
    background: var(--glass) !important;
  }

  a {
    text-decoration: none !important;
    color: inherit !important;
  }

  .gradient-text {
    background: var(--gradient) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
  }

  .glass-card {
    background: var(--glass) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--border) !important;
    border-radius: 1rem !important;
  }

  .navbar-inner {
    max-width: 1200px !important;
    margin: auto !important;
    padding: 1rem 1.5rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .logo {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
  }

  .logo-icon {
    padding: 0.5rem !important;
    border-radius: 1rem !important;
    position: relative !important;
  }

  .logo-text {
    display: flex !important;
    flex-direction: column !important;
    padding-right: 2rem !important;
  }

  .logo-text span:first-child {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
  }

  .logo-text span:last-child {
    font-size: 0.65rem !important;
    letter-spacing: 0.15em !important;
    color: #d8b4fe !important;
  }

  .nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  .nav-links a {
    padding: 0.75rem 1rem !important;
    border-radius: 0.75rem !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    color: white !important;
    text-decoration: none !important;
  }

  .nav-links a.active {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #9333ea44 !important;
    color: white !important;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
  }

  .cta {
    margin-left: 1rem !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.75rem !important;
    background: var(--gradient) !important;
    font-weight: 600 !important;
    box-shadow: 0 0 10px rgba(192, 132, 252, 0.4) !important;
  }

  .menu-toggle {
    display: none !important;
    background: var(--glass) !important;
    padding: 0.75rem !important;
    border-radius: 0.75rem !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: scale(1.05) !important;
  }

  .hamburger-icon {
    width: 24px !important;
    height: 20px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    cursor: pointer !important;
  }

  .hamburger-icon span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background-color: white !important;
    border-radius: 1px !important;
    transition: all 0.3s ease !important;
    transform-origin: center !important;
  }

  .hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  .hamburger-icon.active span:nth-child(2) {
    opacity: 0 !important;
  }

  .hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }

  .mobile-menu {
    display: none !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    padding: 1rem !important;
    margin-top: 0.5rem !important;
    position: relative !important;
  }

  .mobile-menu a {
    padding: 0.75rem !important;
    border-radius: 0.75rem !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
  }

  .mobile-menu a.active {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #9333ea44 !important;
  }

  .mobile-menu.show {
    display: flex !important;
  }

  /* Main content padding for fixed navbar */
  .main-content {
    padding-top: 120px !important;
    padding-bottom: 2rem !important; /* Reduced since footer is no longer fixed */
    min-height: calc(100vh - 120px) !important; /* Only account for navbar */
  }

  /* FAQ Section Styles */
  .faq-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .faq-header {
    margin-bottom: 3rem;
  }

  .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
  }

  .faq-subtitle {
    color: #d8b4fe;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .faq-item.active {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
  }

  .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
  }

  .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .faq-text {
    flex: 1;
    margin-right: 1rem;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    color: #d8b4fe;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
  }

  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #c4b5fd;
    line-height: 1.6;
  }

  /* Updated Footer Styles */
  footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0 1rem;
    color: #d8b4fe;
  }

  .footer-content {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
  }

  .brand-text .gradient-text {
    font-weight: 700;
    font-size: 1.25rem;
  }

  .brand-text small {
    letter-spacing: 0.15em;
    color: #b794f4;
  }

  .footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0 1rem;
  }

  .footer-nav a {
    color: #d8b4fe;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-nav a:hover {
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .footer-social a {
    color: #d8b4fe;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .footer-social .lucide {
    width: 20px;
    height: 20px;
  }

  .footer-copyright {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #c4b5fd;
  }

  /* Responsive FAQ */
  @media (max-width: 991px) {
    .faq-container {
      grid-template-columns: 1fr;
      max-width: 800px;
      gap: 1rem;
    }
  }

  @media (max-width: 768px) {
    .faq-section {
      padding: 3rem 0;
    }

    .faq-title {
      font-size: 2rem;
    }

    .faq-subtitle {
      font-size: 1rem;
    }

    .faq-container {
      padding: 0 1rem;
    }

    .faq-question {
      padding: 1.25rem;
      font-size: 0.95rem;
    }

    .faq-answer p {
      padding: 0 1.25rem 1.25rem;
      font-size: 0.9rem;
    }
  }

  @media (max-width: 576px) {
    .faq-title {
      font-size: 1.75rem;
    }

    .faq-question {
      padding: 1rem;
      font-size: 0.9rem;
    }

    .faq-answer p {
      padding: 0 1rem 1rem;
      font-size: 0.85rem;
    }
  }

  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }

    .footer-nav {
      justify-content: center;
      margin: 0;
    }

    .footer-social {
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    .footer-nav {
      gap: 1rem;
    }

    .footer-nav a {
      font-size: 0.85rem;
    }

    .footer-social a {
      width: 35px;
      height: 35px;
    }

    .footer-social .lucide {
      width: 18px;
      height: 18px;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none !important;
    }

    .menu-toggle {
      display: block !important;
    }

    .navbar-inner {
      padding: 0.75rem 1rem !important;
    }

    .logo-text {
      padding-right: 1rem !important;
    }

    .logo-text span:first-child {
      font-size: 1.25rem !important;
    }

    .logo-text span:last-child {
      font-size: 0.6rem !important;
    }

    .mobile-menu {
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      right: 0 !important;
      background: rgba(15, 15, 15, 0.95) !important;
      backdrop-filter: blur(8px) !important;
      -webkit-backdrop-filter: blur(8px) !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      border-top: none !important;
      border-radius: 0 0 1rem 1rem !important;
      margin-top: 0 !important;
      padding: 1.5rem !important;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    }

    .mobile-menu a {
      display: block !important;
      text-align: center !important;
      padding: 1rem !important;
      margin-bottom: 0.5rem !important;
      border-radius: 0.75rem !important;
      color: white !important;
      text-decoration: none !important;
      transition: all 0.3s ease !important;
      font-weight: 500 !important;
      background: rgba(255, 255, 255, 0.05) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .mobile-menu a:last-child {
      margin-bottom: 0 !important;
    }

    .mobile-menu a:hover {
      background: rgba(255, 255, 255, 0.15) !important;
      border-color: rgba(255, 255, 255, 0.2) !important;
      transform: translateY(-2px) !important;
    }

    .mobile-menu a.active {
      background: rgba(124, 58, 237, 0.2) !important;
      border: 1px solid rgba(124, 58, 237, 0.4) !important;
      color: #e9d5ff !important;
    }

    .mobile-menu a.cta {
      background: var(--gradient) !important;
      font-weight: 600 !important;
      box-shadow: 0 0 10px rgba(192, 132, 252, 0.4) !important;
      border: none !important;
    }

    .mobile-menu a.cta:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 4px 20px rgba(192, 132, 252, 0.6) !important;
      background: linear-gradient(to right, #8b5cf6, #f472b6) !important;
    }
  }

  @media (max-width: 480px) {
    .navbar-inner {
      padding: 0.5rem 0.75rem !important;
    }

    .logo-text span:first-child {
      font-size: 1.1rem !important;
    }

    .logo-text span:last-child {
      font-size: 0.55rem !important;
    }

    .mobile-menu {
      padding: 1rem !important;
    }

    .mobile-menu a {
      padding: 0.875rem !important;
      font-size: 0.95rem !important;
    }
  }

input,
select,
textarea {
    color: white !important;
    background: rgba(255, 255, 255, 0.05);
}