body {
  font-family: Arial, sans-serif;
  background: #f4f7fa;
  color: #222;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(90deg, #0055cc, #0077ff);
  color: white;
}

.logo {
  width: 100px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1em;
  opacity: 0.9;
}

.program {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
}

.program-img {
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.program-info {
  max-width: 500px;
}

button {
  background: #0077ff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.1em;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #005fd1;
}

footer {
  text-align: center;
  padding: 20px;
  background: #eee;
  font-size: 0.9em;
  color: #555;
}
