
body {
  margin: 0;
  font-family: 'Arial Black', sans-serif;
  background-color: #111;
  color: white;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #000;
  flex-wrap: wrap;
}
.logo {
  font-size: 26px;
  font-weight: bold;
}
nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
nav a:hover {
  color: #f04f2a;
}
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.hero .overlay {
  background-color: rgba(0,0,0,0.6);
  padding: 40px 20px;
}
.hero h1 {
  font-size: 36px;
}
.programs {
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.program-card {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #333;
  max-width: 300px;
  text-align: center;
  color: white;
  text-decoration: none;
}
.program-card:hover {
  border-color: #f04f2a;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #888;
  font-size: 14px;
}

/* Mobile tweaks */
@media screen and (max-width: 768px) {
  .logo {
    font-size: 22px;
  }
  nav a {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .program-card {
    max-width: 90%;
  }
}
