.teamwaarden-samenwerking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 40px;
}

/* BUTTON */
.collapsible-button {
  background: #FBF2F9FF;
  color: #1f1f1f;
  cursor: pointer;
  padding: 14px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PLUS ICON */
.collapsible-button::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: #1f1f1f;
  margin-left: 10px;
}

/* HOVER + ACTIVE */
.collapsible-button:hover {
  background: #f3e7ef;
}

.collapsible-button.active {
  background: #f3e7ef;
}

.collapsible-button.active::after {
  content: "−";
}

/* CONTENT BOX */
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #FBF2F9FF;
  border-radius: 15px;
  padding: 0 10px;
  margin-top: 2px;
  margin-bottom: 9px;
}

/* CONTENT TEXT */
.collapsible-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 10px 0;
}

/* SAMENWERKING */
.samenwerking {
  margin-left: 30px;
}

.samenwerking-box {
  background: #FBF2F9FF;
  padding: 24px 28px;
  border-radius: 16px;
  line-height: 1.7;
  color: #1f1f1f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.samenwerking-box p {
  font-size: 15px;
  margin: 0;
}
/*Aanpassing voor de minecraft afbeelding */

.prototype-image {
    text-align: center;
}

.prototype-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px; /* 🔥 dit maakt de hoeken rond */
    display: block;
    margin: 0 auto;
}

.image-caption {
    max-width: 400px;   /* zelfde breedte als image */
    margin: 8px auto 0; /* centreert de caption */
    text-align: center;
}