  @font-face {
    font-family: 'Gilroy';
    src: local('Gilroy-Regular'), url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap') format('woff2');
    font-weight: normal;
    font-style: normal;
  }
  body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    margin: 0;
    overflow-x: hidden;
  }
  h1, .font-playfair {
    font-family: 'Playfair Display', serif;
  }
  .font-poppins {
    font-family: 'Poppins', sans-serif;
  }
  h2, h3, h4, h5, h6 {
    font-family: 'Gilroy', sans-serif;
  }
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 48px;
    height: 36px;
    cursor: pointer;
    position: relative;
  }
  .hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
  }
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
  }
  .menu {
    transition: all 0.3s ease;
    height: 80vh;
  }
  .menu.hidden {
    opacity: 0;
    transform: scale(0);
  }
  .menu.active {
    opacity: 1;
    transform: scale(1);
  }
  .get-started-popup {
    transition: all 0.3s ease;
  }
  .hover-div:hover {
    width: 150px;
    transition: width 0.3s ease;
  }
  .hover-div:hover .hover-text {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .hover-div:hover #get-started-div {
    content: "Click to expand";
  }
  .hover-text {
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    padding-left: 10px;
    color: #9CA3AF;
    font-size: 0.875rem;
    content: "Click to expand";
  }
  .scroll-text {
    color: #9CA3AF;
    transition: color 0.5s ease;
  }
  .scroll-text.active {
    color: #fff;
  }
  .bg-hero {
    background-size: cover;
    background-position: center;
  }
  div.rounded-md, a.rounded-md {
    border-radius: 5px;
  }
  .animate-scroll-in {
    opacity: 0;
    transform: translateY(50px);
    animation: scrollIn 0.8s ease forwards;
  }
  @keyframes scrollIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @supports (-webkit-overflow-scrolling: touch) {
    html {
      scroll-behavior: smooth;
    }
  }
  @media (max-width: 640px) {
    .menu {
      height: 50vh;
      width: 100%;
    }
    .text-lg {
      font-size: 1rem;
    }
    .text-xl {
      font-size: 1.125rem;
    }
    .text-2xl {
      font-size: 1.25rem;
    }
    .text-4xl {
      font-size: 1.5rem;
    }
    .text-5xl {
      font-size: 1.75rem;
    }
    #faq .text-2xl {
      font-size: 1.25rem;
    }
    #faq .text-lg {
      font-size: 1rem;
    }
    #get-started-div {
      padding: 0.5rem 1rem;
    }
  }
  a.block.text-center.text-xl.md\:text-2xl.text-white.border.border-white.px-6.py-3.rounded-md.hover\:border-green-500 {
    max-width: 200px;
    margin: 0 auto;
    margin-top: 20px;
  }