.header-info{
  text-align: center;
  margin-bottom:50px;
}
.site-map{
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
  font-size: 18px;
  font-weight: bold;
}

.header-info h1{
  font-size: 50px;
  font-weight: 900;
}
.site-map a{
  text-decoration: none;
  color: black;
}
.site-map a:hover{
  text-decoration: none;
  color:rgb(253, 166, 4);
}
.site-map p i{
  color: rgb(251, 173, 28);
  font-size: 8px;
  padding-right: 10px;
}

.site-map li p{
  color: black;
  flex-direction: row;
}
@media (max-width: 768px) {
  .header-info h1 {
      font-size: 40px;
  }

  .site-map {
      flex-direction: column;
      gap: 15px;
      font-size: 16px;
  }

  .site-map a {
      font-size: 14px;
  }
}

/* For screens up to 480px (mobile devices) */
@media (max-width: 480px) {
  .header-info h1 {
      font-size: 30px;
  }

  .site-map {
      gap: 10px;
      padding-top: 20px;
      font-size: 14px;
  }

  .site-map p i {
      font-size: 10px;
  }
}


