<style>
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }

  .mission-vision {
    display: flex;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Background colors */
  .mission {
    background-color: #f2eeee;
  }

  .vision {
    background-color: #fbe5e9;
  }

  /* Icon + Heading */
  .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .icon-box {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-box img {
    width: 50px;
    height: 50px;
  }

  .card-header h2 {
    font-size: 28px;
    color: #222;
    margin: 0;
  }

  /* Text */
  .card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
</style>
