 
    /* Banner under sub-header */
    .page-banner {
      position: relative;
      height: 300px;
     /* background: url('images/about-banner.jpg') center/cover no-repeat;*/
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: rgba(52, 7, 136, 0.788);
      text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    }

    .page-banner h1 {
      font-size: 3rem;
      margin: 0;
    }
    .page-banner p {
      margin-top: 10px;
      font-size: 1.2rem;
    }
    /* Two-column about section */
    .about-section {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      gap: 40px;
      align-items: center;
    }
    .about-text {
      flex: 1 1 400px;
    }
    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .about-text p {
      line-height: 1.6;
      margin-bottom: 15px;
      color: #444;
    }
    .about-image {
      flex: 1 1 400px;
      text-align: center;
    }
    .about-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 8px;
    }
    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
      }
      .page-banner h1 {
        font-size: 2.5rem;
      }
    }
  