*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

header nav {
  background-color: #333;
  padding: 1rem;
}

header nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

header nav ul li {
  margin: 0 1rem;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

#hero {
  background-color: #1f442e;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.5rem;
}

#travel-tips {
  padding: 40px 20px;
}

.tip-category {
  margin-bottom: 40px;
}

.tip-category h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1f442e;
}

.tip-category ul {
  list-style-type: none;
  padding-left: 20px;
}

.tip-category ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.tip-category a {
  color: #4caf50;
  font-size: 1.1rem;
  text-decoration: none;
}

.tip-category a:hover {
  text-decoration: underline;
}

.resources {
  margin-top: 40px;
}

.resources h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1f442e;
}

.resources ul {
  list-style-type: none;
  padding-left: 20px;
}

.resources ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.resources a {
  color: #4caf50;
  font-size: 1.1rem;
  text-decoration: none;
}

.resources a:hover {
  text-decoration: underline;
}

#other-pages {
  text-align: center;
  margin-top: 40px;
}

#other-pages p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

#other-pages ul {
  list-style-type: none;
  padding: 0;
}

#other-pages ul li {
  margin: 10px 0;
}

#other-pages a {
  color: #1f442e;
  font-size: 1.2rem;
  text-decoration: none;
}

#other-pages a:hover {
  text-decoration: underline;
}

#map-location {
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

#map-location h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

#map-location iframe {
  width: 90%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  #map-location iframe {
    height: 350px;
    width: 100%;
  }
}

footer {
  text-align: center;
  padding: 20px 25px;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
}

.nav-links li a:hover {
  color: #ff6347;
}

@media (max-width: 768px) {
  .tip-category h2 {
    font-size: 2rem;
  }

  .tip-category ul li {
    font-size: 1rem;
  }

  .resources h2 {
    font-size: 2rem;
  }

  .resources ul li {
    font-size: 1rem;
  }

  #hero h1 {
    font-size: 2.5rem;
  }

  #hero p {
    font-size: 1.2rem;
  }

  #other-pages p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header nav ul {
    flex-direction: column;
    align-items: center;
  }

  .tip-category h2 {
    font-size: 1.6rem;
  }

  .tip-category ul li {
    font-size: 1rem;
  }

  .resources h2 {
    font-size: 1.6rem;
  }

  .resources ul li {
    font-size: 1rem;
  }

  #hero h1 {
    font-size: 2rem;
  }

  #hero p {
    font-size: 1rem;
  }

  footer {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .nav-links {
    display: flex;
    list-style-type: none;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}