@import url(../components/config.css);
.programs-page {
  background: #ffffff;
}

.programs-intro {
  padding: 80px 0;
  background: #f7fbfb;
}

.intro-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.intro-content {
  flex: 1;
}

.intro-content h2,
.section-heading h2,
.programs-cta h2 {
  color: #12343b;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.intro-content p,
.section-heading p,
.program-card p,
.programs-cta p {
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
}

.intro-image {
  flex: 1;
}

.intro-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.16);
}

.programs-list {
  padding: 90px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 45px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  display: block;
  padding: 34px 30px;
  background: #ffffff;
  border: 1px solid #e2eeee;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(18, 52, 59, 0.07);
  transition: 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: #0f766e;
  box-shadow: 0 20px 45px rgba(15, 118, 110, 0.16);
}

.program-card h3 {
  color: #12343b;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.program-card span {
  display: inline-block;
  margin-top: 18px;
  color: #0f766e;
  font-weight: 700;
}

.programs-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #12343b, #0f766e);
  text-align: center;
}

.programs-cta h2,
.programs-cta p {
  color: #ffffff;
}

.programs-cta p {
  max-width: 760px;
  margin: 0 auto 28px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #d4a017;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #b8860b;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .intro-wrapper {
    flex-direction: column;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-content h2,
  .section-heading h2,
  .programs-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .programs-intro,
  .programs-list,
  .programs-cta {
    padding: 60px 0;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .intro-image img {
    height: 280px;
  }

  .program-card {
    padding: 28px 24px;
  }

  .cta-btn {
    width: 100%;
  }
}
