body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #363636;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  padding: 2rem;
}

.text-section {
  flex: 1;
  text-align: left;
  padding-right: 2rem;
}

.progress-box {
  background-color: rgba(255, 255, 255, 0.75);
  color: #000;
  padding: 2rem 3rem;
  border-radius: 20px;
  font-size: 3rem;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(4px); /* optioneel: mooi glas-effect */


.image-section {
  flex: 1;
  text-align: right;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .text-section {
    padding: 0;
    margin-top: 2rem;
  }

  .progress-box {
    font-size: 2.5rem;
  }
}
