
  .section {
    height: 100vh !important;
    padding-top: 270px;
    box-sizing: border-box;
  }

  @media (max-width: 768px) {
    .section {
      padding-top: 160px;
    }
  }

  /* Menu Bar Styles */
  .menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(252, 211, 20, 0.3);
    transition: all 0.3s ease;
  }

  .menu-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-logo {
    font-family: 'Another Danger Demo', Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--mangolight);
    text-decoration: none;
    letter-spacing: 2px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--mangolight);
    transition: all 0.3s ease;
  }

  .menu-logo:hover {
    -webkit-text-stroke-width: 2px;
    text-shadow: 0 0 10px rgba(252, 211, 20, 0.5);
  }

  .menu-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
  }

  .menu-nav li {
    margin: 0;
  }

  .menu-nav a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
  }

  .menu-nav a:hover,
  .menu-nav a.active {
    color: var(--mangolight);
    border-color: var(--mangolight);
    background: rgba(252, 211, 20, 0.1);
  }

  /* Mobile Menu */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
  }

  .menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--mangolight);
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  @media (max-width: 768px) {
    .menu-bar {
      padding: 15px 20px;
    }

    .menu-toggle {
      display: flex;
    }

    .menu-nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(19, 19, 19, 0.98);
      backdrop-filter: blur(15px);
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      border-top: 1px solid rgba(252, 211, 20, 0.3);
    }

    .menu-nav.active {
      max-height: 300px;
      padding: 20px 0;
    }

    .menu-nav li {
      padding: 0 20px;
    }

    .menu-nav a {
      padding: 15px 0;
      border: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-nav a:hover,
    .menu-nav a.active {
      background: none;
      border-bottom-color: var(--mangolight);
    }
  }

  /* Hero text positioning - lower by 50px on desktop */
  .text-block2,
  .text-block2-copy,
  .text-block2-copy-copy {
    margin-top: 100px;
  }

  @media (max-width: 768px) {
    .text-block2,
    .text-block2-copy,
    .text-block2-copy-copy {
      margin-top: 0;
    }
  }

