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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0b0b;
  color: #f2f2f2;
  line-height: 1.7;
}

/* Algemene layout */
.section {
  padding: 5rem 0;
}

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

/* Split layout */
.split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
}

.media {
  flex: 1;
}

/* Typografie */
h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  max-width: 520px;
  margin-bottom: 1rem;
  font-weight: 400;
}

.note {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Lists */
ul {
  list-style: none;
  margin-top: 1rem;
}

ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  opacity: 0.6;
}

/* Media */
.media img,
.media iframe {
  width: 100%;
  border-radius: 16px;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  margin-right: 1rem;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  opacity: 0.5;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  p {
    max-width: 100%;
  }
}
