
    /* Navbar container - full width */
    .navbar {
      width: 100%;
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      position: fixed;
      top: 0;
      z-index: 1000;
    }

    /* Inner content - max 1100px centered */
    .nav-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #2c3e50;
      text-decoration: none;
    }

    .logo span {
      color: #e74c3c;
    }

    /* Main menu */
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
    }

    .nav-menu li a {
      text-decoration: none;
      color: #34495e;
      font-weight: 500;
      font-size: 1.05rem;
      transition: color 0.25s ease;
    }

    .nav-menu li a:hover {
      color: #e74c3c;
    }

    /* CTA Button */
    .cta-button {
      padding: 10px 28px;
      background-color: #e74c3c;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background-color: #2c3e50;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Mobile menu */
    @media (max-width: 992px) {
      .nav-container {
        padding: 0 16px;
      }

      .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
      }

      .nav-menu.active {
        display: flex;
      }

      .nav-menu li {
        margin: 18px 0;
      }

      .nav-menu li a {
        font-size: 1.3rem;
      }

      .cta-button {
        display: none;           /* Hide CTA on mobile */
      }

      .hamburger {
        display: flex;
      }
    }

    /* Optional: hamburger animation when active */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

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