.container {
   width: 90%;
   max-width: 1100px;
   margin: 0 auto;
}

/* About section */
.about,
.mission,
.team {
   padding: 3rem 0;
}

.about h2,
.mission h2,
.team h2 {
   color: #0a2540;
   margin-bottom: 1rem;
   text-align: center;
}

/* Mission */
.mission-content {
   background-color: #f3f6fa;
   border-left: 5px solid #0a2540;
   padding: 2rem;
   border-radius: 8px;
}

/* Team */
.team-members {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-around;
   margin-top: 2rem;
}

.member {
   text-align: center;
   width: 250px;
   margin-bottom: 2rem;
}

.member img {
   width: 150px;
   height: 150px;
   object-fit: cover;
   border-radius: 50%;
   margin-bottom: 1rem;
}

.about ul, .mission ul {
   margin-left: 50px;
}

.about ul li, .mission ul li {
   list-style-type: disc;
}

.mission ul li span {
   font-weight: bold;
}