body {
    margin: 0;
    display: flex;
    flex-direction: row; /* Standaard horizontale weergave */
    height: 100vh; /* Volledige hoogte van de viewport */
    font-family: 'Montserrat', sans-serif;
}

  .big-block {
    background-color: #FE9400; /* Oranje */
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    cursor: pointer;
  }

  
  .big-block img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
  }
  .big-block .title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    margin-right: 7px;
    padding-left: 20px;
  }
  .big-block .details {
    font-size: 1.3rem;
    line-height: 1.4;
    padding-left: 20px;
    transition: transform 0.3s ease;
}

.big-block .details:hover {
    transform: scale(0.95); /* Vergroot iets bij hover */
    }

  .big-block .details span {
    font-weight: bold;
  }

  .small-blocks {
    display: flex;
    flex-direction: column;
    width: 40%;
  }

  .small-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 2rem;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
  }
  .small-block:nth-child(1) {
    background-color: #232323; /* Donkergrijs */
    color: white;
  }
  .small-block:nth-child(2) {
    background-color: #F1F1F1; /* Lichtgrijs */
    color: black;
  }
  .small-block .title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 100px;
    margin-left: 80px;
  }
  .small-block .details {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-left: 80px;
    transition: transform 0.3s ease;
}

.small-block .details:hover {
    transform: scale(0.95); /* Vergroot iets bij hover */
    }

  .small-block .details span {
    font-weight: bold;
  }

  /* Media Query voor kleinere schermen */
  @media (max-width: 1020px) {
    body {
      flex-direction: column; /* Stapel de blokken verticaal */
    }

    .big-block, .small-blocks {
      width: 100%; /* Laat beide blokken de volledige breedte innemen */
      height: 100%;
    }

    .small-block {
      width: 100%;
    }

    .big-block {
      align-items: flex-start; /* Tekst links uitlijnen */
      padding-left: 20px;
      padding-top: 100px;
      padding-bottom: 50px;
    }

    .small-block .title,
    .small-block .details {
      margin-left: 20px; /* Verklein de margin voor kleinere schermen */
      margin-bottom: 50px;
    }

    .big-block img {
        position: absolute;
        top: 20px;
        left: 40px;
        width: 40px;
      }

  }

  /* Toast-styling */
  .toast {
    position: fixed;
    bottom: -100px; /* Begin buiten beeld */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(35, 35, 35);
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 1000;
  }

  .toast.show {
    bottom: 40px; /* Laat de toast verschijnen */
    opacity: 1;
  }