#introduction p {
  max-width: 1200px;
  text-align: justify;
}

#why-choos-us #card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 80px;
  margin-top: 20px;
}

#why-choos-us .card {
  width: 45%;
  padding: 40px;
  border: 1px solid #0B00CF;
  border-radius: 35px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#why-choos-us .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px #EE37323F;
  border: 1px solid #EE3732;
}

#why-choos-us .bi {
  font-size: 48px;
  transition: color 0.3s;
  color: #0B00CF;
}

#why-choos-us .card:hover .bi {
  color: #EE3732;
}

#why-choos-us h3 {
  margin: 20px 0;
  font-size: 30px;
  line-height: 1.3;
  font-weight: bold;
  transition: color 0.3s;
  color: #0B00CF;
}

#why-choos-us .card:hover h3 {
  color: #EE3732;
}

#why-choos-us p {
  line-height: 24px;
  font-size: 16px;
}

#team .card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

#team .card {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#team img {
  width: 169px;
  height: 169px;
  margin-bottom: 20px;
  border-radius: 999px;
  object-fit: contain;
  filter: grayscale(100%);
  background-color: rgba(0, 0, 0, 0.1);
  transition: filter 0.3s, background-color 0.3s;
  vertical-align: middle;
}

#team .card:hover img {
  filter: grayscale(0%);
  background-color: #0B00CF11;
}

#team .card h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  color: royalblue;
}

#team .card p {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 1079px) {
  #team h2 {
      font-size: 34px;
      line-height: 44px;
      margin-left: 0;
      margin-bottom: 30px;
  }

  #why-choos-us #card-wrapper {
    justify-content: center;
  }

  #why-choos-us .card {
    width: 100%;
    max-width: 500px;
    padding: 25px;
  }
}