.page-main-contact {
  min-height: calc(100vh - 280px);
  display: grid;
  place-items: center;
  padding: 3.5rem 1rem;
  /* background: url("../images/contact-bg.jpeg") center/cover no-repeat; */
}

.hero-card-contact {
  width: min(900px, 100%);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  padding: 2.5rem 4rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.hero-card-contact h1 {
  text-align: center;
  margin: 0 0 0.6rem;
  font-size: 3rem;
  color: #062b80;
}

.hero-card-contact .intro {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #263653;
  font-size: 1.1rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid #d7deea;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #245dcc;
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
}

.contact-row h2 {
  margin: 0 0 0.6rem;
  color: #062b80;
  font-size: 1.25rem;
}

.contact-row p {
  margin: 0.35rem 0;
  color: #263653;
  font-size: 1.05rem;
}

.contact-row a {
  color: #064ecf;
  text-decoration: none;
}