 ul.core-values {
      list-style: none;
      padding: 0;
      max-width: 600px;
      margin: 30px auto;
    }

    ul.core-values li {
      background: #ffffff;
      margin: 15px 0;
      padding: 20px;
      border-left: 2px solid #3e3ea0;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      transition: background 0.3s ease;
    }

    ul.core-values li:hover {
      background: #ecf6fc;
    }

    .title {
      font-weight: bold;
      font-size: 18px;
      color: #1a5276;
    }

    .description {
      margin-top: 5px;
      font-size: 15px;
     
    }
    .description-1{
        text-align: justify;
    }

    .text{
        color: #3e3ea0;
        font-weight: bold;
    }
  
    .about{
      background: #ffffff;
      margin: 15px 0;
      padding: 20px;
      border-left: 2px solid #3e3ea0;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      transition: background 0.3s ease;
      text-align: justify;
    }

    .about:hover {
      background: #ecf6fc;
    }

    /**Team css**/

    .team-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 40%;
    height: auto;
    border-radius: 10px;
}

.team-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.team-role {
    font-size: 16px;
    color: #6c757d;
}