body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7faf9;
}

/* HERO */
.hero {
  height: 250px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("images/programs-hero.jpg");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero h1 {
  font-size: 40px;
}

/* DETAIL */
.detail {
  padding: 60px 10%;
}

.container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.image img:hover {
  transform: scale(1.05);
}

/* TEXT */
.text h2 {
  font-size: 28px;
  color: #2c7a7b;
}

.text p {
  line-height: 1.7;
  color: #555;
  margin-top: 10px;
}

/* BUTTON */
.text button {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  background: #2c7a7b;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.text button:hover {
  background: #225e5f;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }
}