* {
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #ffffff;
}

/* Navbar */
.navbar {
  background-color: #0a3e2f !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.3px;
  color: white !important;
}

.navbar-brand span {
  color: #f9b234;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  transition: 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: #f9b234 !important;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #0e4d3a 0%, #062c21 100%);
  color: white;
  padding: 100px 0 110px;
  position: relative;
}

.hero h1 {
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero .lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

.btn-custom-primary {
  background-color: #f9b234;
  color: #0a3e2f;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 40px;
  border: none;
  transition: 0.2s;
}

.btn-custom-primary:hover {
  background-color: #ffca5c;
  color: #062c21;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-radius: 40px;
  padding: 12px 28px;
  font-weight: 500;
}

/* section headers */
.section-title {
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: #0a3e2f;
}

.section-subhead {
  color: #5e6f6a;
  font-weight: 500;
  border-left: 4px solid #f9b234;
  padding-left: 16px;
  margin-bottom: 2.5rem;
}

/* Pillar Cards with Images */
.pillar-card {
  background: #fefcf5;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.25s ease;
  height: 100%;
  border: 1px solid #e9e3d5;
  cursor: pointer;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
  border-color: #f9b234;
}

.pillar-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.pillar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-img {
  transform: scale(1.05);
}

.pillar-content {
  padding: 1.5rem;
}

.pillar-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-weight: 700;
  color: #0a3e2f;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.pillar-desc {
  color: #2d3e38;
  line-height: 1.5;
  font-size: 0.95rem;
}

.more-text {
  display: none;
  margin-top: 12px;
  color: #5e6f6a;
  font-size: 0.9rem;
  border-top: 1px dashed #e0d6c0;
  padding-top: 12px;
}

.program-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  border: 1px solid #ede8db;
  transition: 0.2s;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.program-num {
  background: #f9b23420;
  color: #b4621a;
  width: 42px;
  height: 42px;
  font-weight: 800;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.bg-soft-green {
  background-color: #f6faf8;
}

footer {
  background: #0a3e2f;
  color: #ddddd0;
}

.footer-links a {
  color: #cfd9d5;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f9b234;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .pillar-image-wrapper {
    height: 180px;
  }
}