.about-hero-section {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
  padding-top: 160px;
}
.about-hero-section h1 {
  font-size: 42px;
  margin-bottom: 20px;
}
.about-hero-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.about-content-section {
  padding: 80px 0;
}
.about-two-col {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #014AB9;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
}
.about-image {
  flex: 1;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-mission-section {
  background: #014AB9;
  padding: 80px 20px;
  text-align: center;
}
.about-mission-section h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #fff;
}
.about-mission-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .about-two-col {
    flex-direction: column;
  }
}

.about-team-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.about-team-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-team-section p{
  text-align: center;
}

.about-team-section .about-team-members {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-around;*/
    /*gap: 30px;*/
}

.about-team-section .team-member {
    background: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    margin: 10px; /* Space between the cards */
}

.about-team-section .team-member img {
    width: 100%; /* Make image full width */
    height: 280px; /* Fixed height for images */
    object-fit: cover; /* Ensures the image covers the space without distortion */
    border-radius: 8px 8px 0 0; /* Rounded corners at the top of the image */
}

.about-team-section .team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

.about-team-section .team-member p {
    color: #777;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Flexbox for responsive layout */
.about-team-section .team-members-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Space between cards */
}

/* For large screens: 4 cards in a row */
@media (min-width: 1200px) {
    .about-team-section .team-member {
        width: calc(25% - 20px); /* 4 cards per row */
    }
}

/* For medium screens: 2 cards in a row */
@media (max-width: 1200px) and (min-width: 768px) {
    .about-team-section .team-member {
        width: calc(50% - 20px); /* 2 cards per row */
    }
}

/* For small screens: 1 card per row */
@media (max-width: 768px) {
    .about-team-section .team-member {
        width: calc(100% - 20px); /* 1 card per row */
    }
}