.stopFusie  {
  padding: 30px;
background-color: rgba(236,240,255,1.00);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;

}

.stopFusie .textDiv {
max-width: 500px;
}

.stopFusie .textDiv .main_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
	color: rgba(1,13,65,1.00);
}
 
.stopFusie .textDiv h2 {
  font-size: 2rem;
  color: rgba(1,13,65,1.00);
  text-transform: uppercase;
}

.stopFusie .textDiv .lees_meer {
  margin-top: 1rem;
  background-color: rgba(1,13,65,1.00);
  color: aliceblue;
  width: fit-content;
  font-size: 16px;
  padding: 15px 30px;
  display: flex;
}

.stopFusie .textDiv .lees_meer:hover {
    background-color: rgba(0,34,183,1.00);
} 

/* .stopFusie .textDiv button span {
  padding-left: 10px;
} */

.stopFusie .image_container {
margin-top: -150px;
  max-width: 350px;
}
.stopFusie .image_container img {
 width: 100%;
 height: 100%;
}

.stopFusie .additional-text-two, 
.stopFusie .additional-text {
  display: none;
  margin-top: 1rem;
  color: #333;
  font-size: 1rem;
}

.stopFusie .additional-text-two.active,
.stopFusie .additional-text.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* Modal and Container styling */
.stopFusie .box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: left;
}

@media (min-width: 640px) {
  .stopFusie .box {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {

  .stopFusie .box {
    text-align: center;
  }
}


.headline {
  font-weight: 600;
}

/* Button styling */
.join-button {
  background-color: white;
  color: #043678;  
  border: 1px solid  #043678;
  font-size: 16px;
  padding: 15px 15px;
  border-radius: 0.375rem;
  cursor: pointer;
  min-width: fit-content;
  transition: background-color 0.2s, color 0.2s;
}

.join-button:hover {
  background-color: #010D41;
  color: white;
}

.arrow {
  margin-left: 0.75rem;
  display: inline-block;
  transition: color 0.2s;
}

/* Modal styling */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.hidden {
  display: none;
}




@media (max-width: 600px) {
  .stopFusie {
    padding: 20px;
  }

  .stopFusie .image_container {
      display: none;
  }
}


