  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body.unique-body {
      padding-top: 54px; /* space for fixed header */
      background-color: #fff;
      font-family: "Raleway", sans-seri;
    }
    .unique-top-wrapper {
      background-color: #000;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }
    .unique-header {
     font-family: "Raleway", sans-seri;
      background-color: rgba(0, 0, 0, 1);
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 40px;
      transition: background 0.3s, backdrop-filter 0.3s;
      position: relative;
    }
    .unique-header.unique-scrolled {
      background-color: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .unique-logo {
      display: flex;
      align-items: center;
    }
    .unique-logo-text img {
      height: 50px;
    }
    .unique-nav {
      display: flex;
      gap: 34px;
      
     font-family: "Raleway", sans-seri;
    }
    .unique-nav a {
      margin-left: 30px;
      text-decoration: none;
      color: white;
      font-weight: normal;
      font-size: 18.5px;
      font-weight: normal;
      transition: 0.3s ease;
      user-select: none;
    }
    .unique-nav a:hover,
    .unique-nav a.unique-active {
      color: #00bcd4;
    }
    /* Hamburger Menu Styles */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 28px;
      height: 22px;
      cursor: pointer;
      user-select: none;
      z-index: 1100;
    }
    .hamburger div {
      width: 100%;
      height: 3px;
      background-color: white;
      border-radius: 2px;
      transition: 0.3s;
      transform-origin: 1px;
    }
    .hamburger.open div:nth-child(1) {
      transform: rotate(45deg);
    }
    .hamburger.open div:nth-child(2) {
      opacity: 0;
      transform: translateX(20px);
    }
    .hamburger.open div:nth-child(3) {
      transform: rotate(-45deg);
    }
    /* Responsive: Mobile nav */
    @media (max-width: 768px) {
      .unique-nav {
        position: fixed;
        top: 54px;
        right: 0;
        background: rgba(0,0,0,0.95);
        width: 100%;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        transition: height 0.3s ease;
        border-top: 1px solid rgba(255,255,255,0.1);
      }
      .unique-nav.open {
        height: calc(100vh - 54px);
        padding-top: 20px;
        overflow-y: auto;
        z-index: 1050;
      }
      .unique-nav a {
        font-size: 22px;
        font-weight: 500;
      }
      /* Show hamburger icon */
      .hamburger {
        display: flex;
      }
    }