
    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }
    a{
        text-decoration: none;
    }

    /* ----------- Top Header ----------- */
    .top-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: rgb(239, 191, 17);
      padding: 10px 20px;
      color: black;
      font-weight: bolder;
      font-size: 14px;
      flex-wrap: wrap;
    }
    @media(max-width:314px){
        .info-item{
            font-size: 14px;
        }
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
    }

    .info-list {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
      font-size: medium;
    }

    .info-item i {
      margin-right: 6px;
      color: black;
      font-weight: bolder;
    }

    .info-item a {
      color: black;
      text-decoration: none;
      font-weight: bolder;
    }

    /* ----------- Main Header ----------- */
    .main-header {
      background-color: #f4fd46;
      padding: 15px 20px;
      color: white;
      position: relative;
      z-index: 10;

      display: flex;
      justify-content: center;
      align-items: center;
    }

    .main-header-inner {
      width: 100%;
      max-width: 1200px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .main-logo {
      display: none;
      font-size: 20px;
      font-weight: bold;
      
      left: 0;
    }

    .nav-links {
      display: flex;
      gap: 25px;
    }

    .nav-links a {
      color: black;
      text-decoration: none;
      font-weight: bolder;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      position: absolute;
      right: 0;
      color: black;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: black;
      font-weight: bolder;
    }

    /* ----------- Mobile Menu ----------- */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.5);
      width: 100%;
      height: 100%;
      display: none;
      z-index: 5;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      background-color: #f4fd46;
      width: 70%;
      height: 100%;
      padding: 30px;
      display: flex;
      flex-direction: column;
      z-index: 15;
      transition: right 0.3s ease-in-out;
    }

    .mobile-menu a {
      color: black;
      text-decoration: none;
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: bolder;
    }

    .close-btn {
      font-size: 30px;
      color: black;
      cursor: pointer;
      align-self: flex-end;
      margin-bottom: 30px;
      font-weight: bolder;
    }

    /* ----------- Responsive Rules ----------- */
    @media(max-width:970px){
      .logo img{
        display: none;
      }
      .main-logo {
        display: block;
      }
      .hamburger {
        display: flex;
      }
       .nav-links {
        display: none;
      }
      .main-header-inner{
        justify-content: space-between;
      }
    }
    @media(min-width: 400px) and (max-width: 970px){
       .main-header-inner{
        justify-content: space-around;
        margin-left: -190px;
      }
 
    }
   
  