
/* ECMT Contact page polish */
.contact-hero {
  background: linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 22px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #d8e6f8;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(5, 36, 89, 0.06);
}

.contact-card.primary-contact {
  border-color: #b7d2f7;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #eaf3ff;
  color: #0878f8;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-card h3 {
  margin: 0 0 12px;
}

.contact-card p {
  color: #50658d;
  line-height: 1.6;
}

.contact-card a {
  color: #0878f8;
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
