  body {
      font-family: 'Poppins', sans-serif;
    }

    /* Navbar */
    .navbar {
      transition: background 0.3s ease-in-out;
    }
    .navbar.scrolled {
      background: #1f425d !important;
    }
    .navbar-brand img {
      height: 70px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0d6efd;
      margin-bottom: 30px;
      text-transform: uppercase;
    }

    /* About Inner Page */
    .about-inner .content h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .about-inner .content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
    }

    .about-inner .stats .stat-box {
      padding: 30px;
      background: #f8f9fa;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .about-inner .stats .stat-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .about-inner .stats .stat-box h3 {
      font-size: 2rem;
      font-weight: 700;
      color: #0d6efd;
    }

    /* Team Section */
    .team-member {
      text-align: center;
    }
    .team-member img {
      border-radius: 50%;
      width: 150px;
      height: 150px;
      object-fit: cover;
      margin-bottom: 15px;
    }
    .team-member h5 {
      font-weight: 600;
      margin-bottom: 5px;
    }
    .team-member p {
      color: #555;
      font-size: 0.95rem;
    }