
/* Basic styling for Dhara Academy */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background-color: #0077cc;
  color: white;
  padding: 20px 0;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
  background: white;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
}

footer {
  text-align: center;
  background-color: #222;
  color: white;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
