* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  padding: 120px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  font-size: 20px;
  color: #666;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  color: #1a1a1a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-card {
  padding: 40px 32px;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.feature-number {
  font-size: 56px;
  font-weight: 700;
  color: #e8f5e9;
  margin-bottom: 20px;
  line-height: 1;
}

.feature-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.feature-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Programs Section */
.programs {
  padding: 100px 0;
  background: #f5f5f5;
}

.programs-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 12px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.program-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
}

.program-tag {
  display: inline-block;
  padding: 6px 16px;
  background: #2e7d32;
  color: white;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.program-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.program-features {
  list-style: none;
}

.program-features li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 15px;
}

.program-features li:last-child {
  border-bottom: none;
}

.program-features li::before {
  content: "✓ ";
  color: #2e7d32;
  font-weight: 700;
  margin-right: 8px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 18px 48px;
  background: white;
  color: #2e7d32;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .section-title,
  .cta-title {
    font-size: 32px;
  }

  .hero-stats {
    gap: 32px;
  }
}
