/* Reset some basic styles */
body, h1, a, p {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body {
  background: #f0f8ff;
  color: #333;
  line-height: 1.6;
  padding: 10px;
}

header {
  text-align: center;
  background: #ffb703;
  padding: 20px;
  border-radius: 12px;
}

#logo {
  width: 80px;
  vertical-align: middle;
}

h1 {
  font-size: 2rem;
  margin-top: 10px;
}

#tabs-top, #tabs-bottom {
  display: flex;
  justify-content: space-around;
  background: #8ecae6;
  padding: 10px;
  border-radius: 8px;
  margin: 15px 0;
}

#tabs-top a, #tabs-bottom a {
  color: #023047;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

#tabs-top a:hover, #tabs-bottom a:hover {
  background: #219ebc;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
}

#main-home img {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
}

footer {
  text-align: center;
  background: #023047;
  color: #fff;
  padding: 10px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-top: 20px;
}
