body {
  font-family: Arial, sans-serif;
  text-decoration: none;
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
  line-height: 1.4;
}

nav {
  display: flex;
  justify-content: space-between;
  text-decoaration: none;
  align-items: center;
  background: #ADDFF0;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed; 
  width: 100%; 
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.2em;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  text-decoration: none;
  gap: 20px;
  z-index: 999;
  border-radius: 8px;
  width: auto;
}

.nav-links a:hover {
  text-decoration: none;
  font-weight: bold;
  color: #0077b6;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
}

section {
  padding: 100px 20px 40px;
  max-width: 900px;
  margin: auto;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
footer {
  background-color: #222;
  color: #fff;
  text-align: left;
  padding: 30px 20px;
  margin-top: 20px;
}

.footer-container {
  max-width: 900px;
  margin: auto;
}

.footer-links a {
  color: #89CFF0; /* Light blue links */
  margin: 0 8px;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: none;
  cursor: pointer;
}
