    /* Hamburger Icon */
    .menu-toggle {
      padding: 1rem;
      cursor: pointer;
      position: fixed;
      top: 1rem;
      left: 1rem;
      z-index: 1001;
    }

    .menu-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      background: #333;
      margin: 5px 0;
      transition: 0.3s;
    }

    /* Sidebar Menu */
    .sidebar {
      position: fixed;
      top: 0;
      left: -300px;
      width: 250px;
      height: 100%;
      background: #f9f9f9;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      padding-top: 4rem;
      transition: left 0.3s ease;
      z-index: 100000;
    }

    .sidebar.active {
      left: 0;
    }

    .close-btn {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
      background: none;
      border: none;
		color:#a84e31;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar li {
      border-top: 1px solid #ddd;
    }

    .sidebar li:first-child {
      border-top: none;
    }

    .sidebar a {
      display: block;
      padding: 1rem;
      text-decoration: none;
      color: #333;
      font-weight: bold;
      transition: background 0.3s;
    }

    .sidebar a:hover {
      background: #eee;
    }