
  <style>
    /* Page Title */
    .page-title {
      background-size: cover;
      background-position: center;
      padding: 120px 0 80px;
      position: relative;
      color: #fff;
    }

    .page-title::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    .page-title .container {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .page-title h1 {
      font-size: 42px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    /* Section Titles */
    .section {
      padding-top: 40px;
    }
    
    .section-title {
      font-size: 28px;
      font-weight: 700;
      padding-bottom: 20px;
      text-align: center;
    }

    .section-subtitle {
      text-align: center;
      color: #6c757d;
      font-size: 16px;
      margin-bottom: 40px;
    }

    /* About Content */
    .about-content {
      background: #ffffff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    }

    .about-content p {
      font-size: 16px;
      line-height: 1.5;
      color: #444;
      margin-bottom: 16px;
      text-align: justify
    }

    .about-content blockquote {
      background: #f8f9fa;
      border-left: 5px solid #08234bff;
      padding: 20px 25px;
      margin: 25px 0;
      font-style: italic;
      border-radius: 6px;
    }

    .about-content span {
      display: block;
      margin-top: 10px;
      font-weight: 600;
      color: #08234bff;
    }

    .about-content ul {
       color: #444 !important;
    }

    .about-content li {
       color: #444 !important;
    }

    .about-content tr {
      /*color: color-mix(in srgb, #444, transparent 40%);*/
      color: #444 !important;
    }

    .about-content tr td {
      color: #444 !important;
    }

    /* Pioneer Cards */
    .pioneer-card {
      background: #ffffff;
      color: #444 !important;
      border-radius: 12px;
      padding: 15px;
      /*text-align: center;*/
      height: 100%;
      transition: all 0.35s ease;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .pioneer-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    }

    .pioneer-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .pioneer-card h6 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .pioneer-card span {
      font-size: 17px;
      color: #46579A;
    }

    /* Responsive Fix */
    @media (max-width: 768px) {
      .page-title h1 {
        font-size: 32px;
      }

      .about-content {
        padding: 25px; 
      }
    }
  </style>