    .mission-section {
      padding: 60px 0;
    }

    .mission-header {
      margin-bottom: 40px;
    }

    .mission-header h1 {
      font-weight: 500;
      color: #1565c0;
      margin-bottom: 20px;
    }

    .mission-card {
      padding: 25px;
      border-radius: 8px;
      margin-bottom: 30px;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mission-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    }

    .mission-card h2 {
      font-size: 1.8rem;
      font-weight: 500;
      color: #1565c0;
      margin-bottom: 20px;
    }

    .mission-card p {
      font-size: 1.1rem;
      color: #333;
    }

    .values-list {
      margin-top: 20px;
    }

    .values-list li {
      margin-bottom: 15px;
      padding-left: 10px;
      border-left: 3px solid #1565c0;
    }

    .values-list h4 {
      font-size: 1.4rem;
      font-weight: 500;
      color: #1565c0;
      margin-bottom: 5px;
    }

    .commitment-list {
      margin-left: 20px;
      list-style-type: disc;
    }

    .commitment-list li {
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .back-to-home {
      margin: 30px 0;
       display: flex;
  justify-content: center;
  align-items: center;
    }

    /* Add this to the CSS in mission.html */
.row {
  display: flex;
  flex-wrap: wrap;
}

.row .col .card .mission-card{
  display: flex;
}

.mission-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}
