.contactList {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contactItem {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #f8fafc;
  color: #123d74;
  text-decoration: none;
}

.contactItem:hover,
.contactItem:focus {
  background: #eef2ff;
  outline: none;
}

.contactItem img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.contactWhatsAppLogo {
  width: 72px !important;
  height: 72px !important;
}

.contactItem span {
  display: block;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.contactItem strong {
  display: block;
  color: #123d74;
  font-size: 18px;
}

.contactQrCard {
  margin-top: 14px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  display: grid;
  justify-items: center;
}

.contactQrThumb {
  width: min(360px, 92vw);
  height: auto;
  display: block;
  cursor: zoom-in;
  border-radius: 10px;
}

.qrFullscreenModal {
  width: min(96vw, 1200px);
  height: min(96vh, 1200px);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
}

.qrFullscreenImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background: #fff;
}

#contactUsPage .serviceHero {
  display: grid;
  justify-content: center;
}

#contactUsPage .serviceContent {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

#contactUsPage .contactList {
  justify-items: center;
}

#contactUsPage .contactItem {
  width: min(620px, 100%);
  text-align: left;
}

.contactUsHeaderRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.contactUsHeaderRow h1 {
  margin: 0;
}

.contactUsCloseBtn {
  width: 40px;
  height: 40px;
  border: 2px solid #123d74;
  border-radius: 10px;
  background: #ffffff;
  color: #123d74;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 auto;
}
