.blocks {
    margin: 0;
    display: flex;
    align-items: center;
    width: 50vw;
    margin-left: calc(-20vw + 40%);
    margin-right: calc(-20vw + 40%);
    margin-bottom: -50px;
}

.about-section {
    width: 50%;
    padding: 40px;
    color: white;    
  }

  .blue {
    background-color: var(--color-blue-logo);
    margin-left: 20px;
    margin-top: 100px;
  }

  .cyan {
    background-color: var(--color-cyan-logo);
    margin-right: 20px;
    margin-bottom: 300px;
  }

  .blue h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
  }

  .blue h2 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 20px;
    color: white !important;
  }

  .blue p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: white;
  }

  .blue li {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
  }

  .blue li:hover {
    color: white;
  }

  .blue li::before {
    background-color: var(--color-white) !important;
  }


  .cyan h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-dark-grey);
  }

  .cyan h2 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--color-dark-grey);
  }

  .cyan p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-dark-grey);
  }
  
  .cyan li {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cyan li::before {
    background-color: var(--color-dark-grey) !important;
  }



@media screen and (min-width: 768px) and (max-width: 1920px) {
  .blocks {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      flex-wrap: nowrap; 
  }
  .about-section {
    width: 100%;
    padding: 20px;
    color: white;    
  }
}

/* Mobiel (767px en smaller) - blokken onder elkaar */
@media screen and (max-width: 767px) {
  .blocks {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      flex-direction: column; /* items onder elkaar */
  }
  .about-section {
    width: 100%;
    /* padding: 40px; */
    color: white;    
  }
}

/* Wide alignment styles */
.wp-block[data-align="wide"] {
    max-width: var(--max-width); /* Updated to use the variable */
    margin-left: auto;
    margin-right: auto;
}

/* Override conflicting margin and width for full alignment blocks */
.wp-block[data-align="full"],
.alignfull{
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}