 .wrapper6 {
    width: 95%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
  }

  .content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .content-col {
    padding: 10px;
  }

  .intro {
    flex: 0 0 50%;   /* replaces width="50%" */
    text-align: left;
  }

  .minister {
    flex: 0 0 25%;   /* replaces width="25%" */
    text-align: center;
  }

  .chairperson {
    flex: 0 0 25%;   /* replaces width="25%" */
    text-align: center;
  }

  /* Responsive: stack on smaller screens */
  @media (max-width: 768px) {
    .intro, .minister, .chairperson {
      flex: 0 0 100%;
      text-align: center;
    }
  }