#why-choose-us {
  text-align: center;
  padding: 50px 4px;
}

#why-choose-us h1 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 40px;
  color: #2B91A7;
}


.card {
  background-color: #F2F2F2;
  border-radius: 22px;
  height: 230px;
  width: 335px;
  padding: 20px;
  padding-bottom: 15px;
  text-align: left;
  margin: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  transition: box-shadow .2s ease-in-out 0s;
}

.card:hover{
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
  margin-bottom: 16px;
}

#card1 .cardIcon{
  width: 50px;
  height: 70px;
}

#card2 .cardIcon{
  width: 76px;
}

#card3 .cardIcon{
  width: 66px;
}

.card h2 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 10px;
  
}

.card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .card {
    width: 90vw;
    max-width: 350px;
    margin: 16px 0;
  }
}

@media (max-width: 480px) {
  #why-choose-us h1 {
    font-size: 2rem;
  }
  .card h2 {
    font-size: 1.1rem;
  }
  .card p {
    font-size: 0.95rem;
  }
}