.home-contact {
  padding: 80px 0 100px;
  background: #fff;
}

.home-contact__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
  box-sizing: border-box;
}

.home-contact__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #151515;
  margin: 0;
}

.home-contact__card {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-contact__icon {
  display: flex;
  width: 88px;
  min-width: 88px;
  height: 88px;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #B65DAF;
}

.home-contact__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.home-contact__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-contact__label {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  margin: 0;
}

.home-contact__desc {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #151515;
  margin: 0;
  line-height: 1.5;
}

.home-contact__link {
  color: #974DAC;
  text-decoration: underline;
}

.home-contact__phone {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #151515;
  margin: 0;
}

@media (max-width: 768px) {
  .home-contact__title {
    font-size: 22px;
  }

  .home-contact__card {
    flex-direction: column;
  }
}
