.contact-cards-section {
  padding: 80px 0;
  background: #FBFBFB;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
}

.contact-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  width: 100%;
}

.contact-card__link:hover {
  text-decoration: none;
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card__label {
  color: #A2947A;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-card__value {
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Gilroy;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .contact-cards-section {
    padding: 60px 0;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .contact-card {
    padding: 28px 16px;
  }

  .contact-card__value {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .contact-cards-section {
    padding: 40px 0;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .contact-card {
    padding: 24px 16px;
    gap: 10px;
  }

  .contact-card__icon {
    width: 40px;
    height: 40px;
  }

  .contact-card__label {
    font-size: 13px;
  }

  .contact-card__value {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .contact-card {
    padding: 20px 12px;
    gap: 8px;
    border-radius: 6px;
  }

  .contact-card__icon {
    width: 36px;
    height: 36px;
  }

  .contact-card__label {
    font-size: 12px;
  }

  .contact-card__value {
    font-size: 13px;
  }
}
