.program-section {
    margin-top: 50px;
  font-family: 'Segoe UI', sans-serif;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.icon {
  background-color: var(--gold);
  color: var(--secondary-color);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111;
}

.card ul {
  list-style: none;
  padding-left: 0;
}

.card ul li {
  color: gray;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.card ul li::before {
  content: "•";
  color: gray;
  position: absolute;
  left: 0;
  top: 0;
}

.section-files {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.section-files .section-file-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.section-files .section-file-link:hover {
    background-color: #e2e6ea;
  
}


.jeugd-banner {
  width: 100%;
  height: 300px; /* pas aan indien nodig */
  overflow: hidden;
  margin-bottom: 0;

  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
/* Zorg dat H1 direct aansluit */
.page-title {

}


.section-info {
  padding-bottom: 0 !important;
}