.contact-cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2.22vw;
}

.contact-info {
  max-width: 20rem;
  flex: 0 0 auto;
  background-color: var(--light-gray);
  flex-direction: column;
  width: 20rem;
  padding: 2rem;
  display: flex;
  gap: 0.5rem;
}

.w-layout-hflex.contact-us-flex-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.contact-us-cardtext {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-cards-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-info {
    align-items: center;
  }

  .w-layout-hflex.contact-us-flex-block {
    flex-direction: column;
  }

  .contact-us-info-title {
    letter-spacing: 0.125rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .contact-info {
    max-width: 100%;
    width: 100%;
    gap: 12px;
  }

  .contact-cards-wrapper{
    padding: 0 22px;
  }

  .contact-us-cardtext{
    font-size: 15px;

  }
}
