.why-love-us {
  text-align: center;
  padding: 5rem 0;
}

.why-love-us h2 {
  font-size: 50px;
  line-height: 55px;
  font-family: PolySans-Median;
  font-weight: 600;
  color: #112129;
  margin-bottom: 10px;

}

.why-love-us p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  font-family: Inter-Regular;
  color: #4B5466;
  margin-bottom: 30px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 70%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.card {
  background: #FAFAFA;
  border: 0;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  /* min-width: 250px; */
  width: 374px;
  height: 195px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;
}

.card:hover {
  border: 1px solid #1EADD3;
  background: transparent;
}

.card img {

  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  line-height: 22px;
  color: #112129;
  font-family: Inter-Bold;
  margin-bottom: 8px;
}

.card p {
  font-size: 18px;
  line-height: 22px;
  font-family: Inter-Regular;
  color: #4B5466;
  margin-bottom: 0;
}

/* Mobile View - Carousel */
@media (max-width: 768px) {
  .cards-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    max-width: 95%;
    gap: 10px;
    padding-left: 0;
    margin: 0 1rem;
    justify-content: flex-start;
  }

  .why-love-us {
    padding: 30px 0px 30px 0px;
    background-color: #f5f5f5;
  }

  .card {
    scroll-snap-align: start;
    min-width: 100px;
    width: 152px;
    height: 245px;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #D9D9D9;
  }
.card:hover {
    border: 1px solid #1EADD3;
    background: #FAFAFA;
}
  .why-love-us h2 {
    font-size: 8vw;
  }

  .why-love-us p {
    font-size: 13px;
  }

  .cards-container::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 426px) {
  .card h3 {
    font-size: 14px;
    line-height: 17px;
  }

  .card img {
    width: 40px;
  }
}