/* =============== General =============== */
.programs-section,
.program-detail-hero,
.program-detail-content {
  font-family: 'Segoe UI', sans-serif;
  padding: 80px 20px;
  background: #f9fafc;
}

/* =============== Programs List =============== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.program-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.program-card .program-info {
  padding: 20px;
}

.program-card .program-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #EF3E2B;
}

.program-card .program-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* =============== Program Detail =============== */

.program-detail-section {
  padding: 50px 0;
}

.program-header h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2CA9E1; /* brand blue */
}

.program-banner {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.program-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.first-aid-highlight {
  background: #F9C32D; /* brand yellow */
  padding: 30px;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.first-aid-highlight h2 {
  font-size: 2rem;
  color: #EF3E2B; /* brand red */
  margin-bottom: 15px;
}

.first-aid-highlight p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefits-list li {
  font-size: 1.1rem;
  margin: 10px 0;
}

.benefits-list i {
  margin-right: 10px;
  color: #EF3E2B;
}

.cta-button {
  display: inline-block;
  background: #2CA9E1; /* brand blue */
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #1f7ca8;
}


