body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.logo {
  text-align: center;
  margin-top: 1rem;
}

.logo img {
  max-width: 150px;
  height: auto;
}

header {
  background-color: #0077cc;
  color: white;
  text-align: center;
  padding: 2rem;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #333;
}

nav a {
  color: white;
  padding: 1rem;
  text-decoration: none;
}

nav a:hover {
  background-color: #555;
}

section {
  padding: 2rem;
  text-align: center;
}

.hero {
  background-color: #e0f7fa;
  padding: 2rem;
}

.courses ul, .faculty ul {
  list-style: none;
  padding: 0;
}

.courses li, .faculty li {
  margin: 0.5rem 0;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}

form input, form select, form textarea {
  margin: 10px 0;
  padding: 8px;
  font-size: 1em;
}

form button {
  padding: 10px;
  background-color: #0077cc;
  color: white;
  border: none;
  cursor: pointer;
}

.testimonials blockquote {
  font-style: italic;
  margin: 1rem auto;
  max-width: 600px;
}

.address {
  background-color: #e0f7fa;
  border-top: 2px solid #0077cc;
  border-bottom: 2px solid #0077cc;
  font-size: 1.1em;
}

footer {
  background-color: #0077cc;
  color: white;
  text-align: center;
  padding: 1rem;
}

.gallery {
  padding: 2rem;
  text-align: center;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-row img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.prospectus {
  text-align: center;
  padding: 2rem;
}

.download-btn {
  background-color: #0077cc;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.download-btn:hover {
  background-color: #005fa3;
}

