/* Flexbox Layout voor de container. */
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  color: white;
  padding: 4em 2em;
  flex-grow: 1; /* Zorgt dat de content de beschikbare ruimte vult */
}

.section {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.section:last-child {
    border-bottom: none;
}

.section-main {
  font-size: 1.8rem;
  color: #A3B5B6;
  margin-bottom: 1rem;
}

.section-text, .prgm {
  font-size: 1.1rem;
  color: #E0E0E0;
  padding-left: 0;
}

.prgm {
  list-style-type: none;
  padding: 0;
}

.prgm li {
  margin-bottom: 0.5rem;
}