
  /* Founder */
  .founder-container {
        display: flex;
        align-items: flex-start; /* ensures top alignment */
         flex-wrap: wrap;
        justify-content: space-between;
    }
    .founder-text h2:first-of-type {
        margin-top: 0;   /* removes extra space */
    }

    .founder-pic {
        width: 30%;
        padding: 2%;
    }

    .founder-text {
        width: 60%;
        padding: 2%;
    }

    .founder-pic img {
        width: 100%;
        border-radius: 12%;
    }

    .founder-pic h2 {
        margin-top: 8px;   /* reduce space */
    }


    /* -------- Responsive for mobile -------- */
    @media (max-width: 768px) {
        .founder-pic, .founder-text {
            width: 100%;
        }
    }