body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  padding-top: 80px;
}

header {
  background-color: #1e1e1e;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

header img {
  height: 50px;
}

nav a {
  color: #a0e7e5;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00ffc3;
}

.hero {
  position: relative;
  background: url('website.png') no-repeat center center/cover;
  color: white;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  z-index: 1;
  filter: brightness(1.2);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 1rem;
  width: 280px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  margin: 1rem 0 0.5rem;
}

.btn {
  background-color: #00adb5;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #007f83;
}

footer {
  background-color: #1e1e1e;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  color: #aaa;
}

.school-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 1rem;
}

.school-list span {
  background-color: #2c2c2c;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
