body {
  background-color: black;
  margin: 0;
}

/* Glass Navbar */
.glass-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.6);  /* Black glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-btn {
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid #888;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* Heading */
.main-heading {
  padding-top: 4rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 2rem;
}

/* Content container */
.container {
  padding: 1rem 2rem 0 4rem;
}

.container h3 {
  font-family: 'Montserrat', sans-serif;
  color: grey;
  font-size: 1.4rem;
  font-weight: 500;
}

section {
  margin-bottom: 2rem;
}

.container p {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 2rem;
}

.container ul {
  padding-left: 1rem;
  line-height: 2rem;
}

.container ul li {
  color: white;
  line-height: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.container a {
  color: lightskyblue;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-decoration: none;
}

.container a:hover {
  color: blue;
}

/* Responsive styles */
@media (max-width: 600px) {
  .main-heading {
    font-size: 1.3rem;
  }

  .container {
    padding: 0.5rem 0.8rem 0 1rem;
  }

  .container h3 {
    font-size: 1rem;
    font-weight: 500;
  }

  .container p {
    font-size: 0.8rem;
    line-height: 1.3rem;
  }

  .container ul li {
    font-size: 0.8rem;
    line-height: 1.3rem;
  }

  .container a {
    font-size: 0.8rem;
  }
}
