    /* About Content */
    .about-content {
      max-width: 900px;
      margin: 0 auto 3rem auto;
      color: #555;
      font-size: 1.1rem;
      line-height: 1.8;
    }
    .about-mission {
      background: #f9fbff;
      padding: 3rem 2rem;
      border-radius: 12px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      margin-bottom: 3rem;
    }
    .about-mission h3 {
      color: #0c1e3a;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    /* Team Section */
    .team-member {
      text-align: center;
      padding: 1rem;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .team-member:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }
    .team-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .team-name {
      font-weight: 700;
      color: #0c1e3a;
      margin-bottom: 0.25rem;
    }
    .team-role {
      font-style: italic;
      color: #007bff;
      margin-bottom: 0.75rem;
    }