  /*MENU*/
  
  body { margin: 0; font-family: 'Segoe UI', sans-serif; }

    header {
      background-color: #ef4d07;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      position: relative;
    }

    .logo img { height: 80px; }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: white !important;
      text-decoration: none;
      font-weight: bold;
    }
    .nav-link:hover {
      color: #3f3e3d !important; 
    }
    .search-form {
      flex: 1;
      max-width: 400px;
      display: flex;
      align-items: center;
      background-color: white;
      border-radius: 30px;
      padding: 5px 10px;
      margin: 0 20px;
    }

    .search-form input {
      border: none;
      flex: 1;
      padding: 8px;
      outline: none;
      font-size: 14px;
    }

    .search-form i {
      color: #ef4d07;
      margin-right: 8px;
      font-size: 18px;
    }

    .menu-toggle {
      display: none;
      font-size: 26px;
      color: white;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      .logo img {
        height: 60px;
        margin-bottom: 10px;
      }

      .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }

      .nav-links.active {
        display: flex;
      }

      .search-form {
        display: flex;
        width: 100%;
        margin: 10px 0;
      }
    }