body {
  padding: 0%;
  margin: 0%;
  background-color: azure;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

nav {
  background: #4caf50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  height: 50px;
}

nav #logo {
  font-size: 24px;
  font-weight: bold;
  margin-left: 20px;
}

nav #nav-links {
  margin: 50px;
  display: flex;
  align-items: center;
}

nav a {
  font-weight: 500;
  text-decoration: none;
  color: black;
  margin-left: 20px;
}

nav a:hover {
  color: white;
}

nav button {
  display: none;
  background: transparent;
  border-radius: 12px;
  font-size: 26px;
}

#mobileMenu {
  display: none;
}

@media (max-width: 968px) {
  nav #nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
    margin: 4px;
  }

  #mobileMenu.open {
    display: block;
    position: fixed;
    inset: 72px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid #eef0f6;
    box-shadow: 0 20px 40px rgba(15, 30, 58, 0.05);
    z-index: 999;
  }
  #mobileMenu a {
    display: block;
    padding: 16px 20px;
    border-top: 1px solid #f1f3f8;
    color: #334155;
  }
  #mobileMenu a:hover {
    background: #f9fafb;
  }
}

/* Hero Section CSS */
section#hero {
  max-width: 100%;
  margin: auto;
  text-align: center;
}

section#hero h1 {
  max-width: 100%;
  font-size: 28px;
}

@media (max-width: 968px) {
  section#hero h1 {
    font-size: 21px;
  }
}

section#hero #title1 {
  color: #4caf50;
}

section#hero #title2 {
  color: #f32121;
}

section#hero #title3 {
  color: #1981d7;
}

section#hero #title4 {
  color: #ff9800;
}

section#hero p {
  max-width: 50%;
  justify-self: center;
  font-size: 16px;
}

@media (max-width: 968px) {
  section#hero p {
    max-width: 100%;
  }
}

section#hero button {
  background-color: lightyellow;
  font-size: 1.2rem;
  padding: 0.6rem;
  border-radius: 0.6rem;
  margin-top: 12px;
}

section#hero button:hover {
  background-color: #ff9800;
}

.footer-content {
  justify-self: center;
}
