.content-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.innovation-overview {
  padding: 4rem 0;
  background: #ffffff;
}


.innovation-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.innovation-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #555;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.program-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-card h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-card h3::before {
  content: "🎯";
  font-size: 1.2rem;
}

.program-card:nth-child(1) h3::before {
  content: "🛡️";
}
.program-card:nth-child(2) h3::before {
  content: "🏘️";
}
.program-card:nth-child(3) h3::before {
  content: "💼";
}
.program-card:nth-child(4) h3::before {
  content: "🎓";
}
.program-card:nth-child(5) h3::before {
  content: "🚨";
}
.program-card:nth-child(6) h3::before {
  content: "📊";
}

.program-card p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.program-card ul {
  list-style: none;
  padding: 0;
}

.program-card ul li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1.5rem;
  transition: var(--transition);
}

.program-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.program-card ul li:hover {
  color: var(--primary-color);
  padding-left: 2rem;
}

.enhanced-overview {
  /* background: linear-gradient(135deg, rgba(162, 108, 54, 0.05), rgba(64, 36, 62, 0.05)); */
  padding: 3rem;  
}

.overview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.overview-header .section-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.overview-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: var(--text-color);
}

.highlight-icon {
  font-size: 1.2rem;
}
