/* CSS for section section:PageTitle */
#section-page-title {
  padding: 80px 0 40px;
  text-align: center;
}
.main-title {
  color: var(--primary-green);
  font-size: 48px;
  margin-bottom: 16px;
}
.main-subtitle {
  color: var(--text-dark);
  font-size: 20px;
}

/* CSS for section section:Intrakurikuler */
#section-intrakurikuler {
  padding: 60px 0;
  background-color: #fff;
}
.intra-icon {
  background: linear-gradient(to bottom right, #4ade80, #059669);
}
.intra-item {
  background-color: var(--bg-light-green);
}
.intra-check {
  background-color: var(--primary-green);
}

/* CSS for section section:Ekstrakurikuler */
#section-ekstrakurikuler {
  padding: 80px 0;
  background-color: var(--bg-beige);
}
.ekstra-icon {
  background: linear-gradient(to bottom right, #fb923c, #ef4444);
}
.ekstra-item {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.ekstra-check {
  background-color: var(--accent-orange);
}

/* CSS for section section:Events */
#section-events {
  padding: 80px 0;
  background-color: #fff;
}
.events-icon {
  background: linear-gradient(to bottom right, #60a5fa, #4f46e5);
}
.events-item {
  background-color: var(--bg-light-green);
}
.events-check {
  background-color: var(--accent-blue);
}

/* CSS for section section:Closing */
#section-closing {
  padding: 60px 0 80px;
  background-color: #fff;
  text-align: center;
}

/* AKTIVITAS_LAYOUT_FIX */
#section-intrakurikuler,
#section-ekstrakurikuler,
#section-events,
#section-closing {
  padding: 72px 0;
}

#section-closing {
  text-align: center;
}

#section-page-title .main-title {
  font-size: 3rem;
  line-height: 1.2;
}

#section-page-title .main-subtitle {
  font-size: 1.75rem;
  color: var(--text-gray);
}

#section-intrakurikuler .section-title,
#section-ekstrakurikuler .section-title,
#section-events .section-title,
#section-closing .section-title {
  text-align: center;
  margin: 0 0 12px;
  color: var(--primary-green);
  font-size: 2.25rem;
}

.section-subtitle {
  max-width: 960px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.6;
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 32px;
  height: 32px;
}

.list-container {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(45, 95, 63, 0.14);
}

.check-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.item-text {
  display: block;
  color: var(--text-gray);
  font-size: 1.06rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  #section-page-title .main-title {
    font-size: 2.25rem;
  }

  #section-page-title .main-subtitle,
  .section-subtitle,
  .item-text {
    font-size: 1rem;
  }

  #section-intrakurikuler .section-title,
  #section-ekstrakurikuler .section-title,
  #section-events .section-title,
  #section-closing .section-title {
    font-size: 1.75rem;
  }
}

