.contact-page {
  background: #fff;
  color: #001066;
  min-height: 100vh;
}

.contact-header {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 2px 12px rgba(0, 0, 159, 0.08);
  position: sticky;
  top: 0;
}

.contact-header .ly_header_inner {
  gap: 1.5rem;
}

.contact-nav {
  align-items: center;
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.contact-nav a {
  color: #00009f;
  font-weight: 700;
  text-decoration: none;
}

.contact-language {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.contact-language a {
  background: #f4f6ff;
  border-radius: 0.25rem;
  box-shadow: 0.125rem 0.1875rem 0.25rem rgba(24, 71, 13, 0.18);
  padding: 0.75rem 1.25rem;
}

.contact-main {
  padding: 3rem 0 5rem;
}

.contact-breadcrumb {
  color: #00009f;
  font-size: 0.875rem;
  margin: 0 0 2rem;
}

.contact-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.contact-title {
  color: #001066;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1.75rem;
}

.contact-lead {
  color: #001066;
  font-size: 1.125rem;
  margin: 0 0 3.25rem;
}

.contact-panel {
  border: 2px solid #a8c4ff;
  margin: 0 auto;
  max-width: 48.75rem;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-field {
  align-items: start;
  border-bottom: 1px dashed #999;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(8rem, 12rem) 1fr;
  padding-bottom: 1.25rem;
}

.contact-field:last-of-type {
  border-bottom: 0;
}

.contact-label {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  padding-top: 0.45rem;
}

.contact-input,
.contact-textarea {
  background: #f7fcff;
  border: 1px solid #9dbbff;
  border-radius: 0.1875rem;
  color: #1a1a1a;
  font: inherit;
  padding: 0.75rem 0.875rem;
  width: 100%;
}

.contact-textarea {
  min-height: 13rem;
  resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #00009f;
  box-shadow: 0 0 0 3px rgba(0, 0, 159, 0.12);
  outline: none;
}

.contact-consent {
  align-items: center;
  color: #001066;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0 0;
}

.contact-consent input {
  height: 1rem;
  width: 1rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.contact-submit,
.contact-secondary {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 12rem;
  padding: 0.875rem 2rem;
}

.contact-submit {
  background: #18c466;
  box-shadow: 0.125rem 0.1875rem 0.25rem rgba(24, 71, 13, 0.28);
  color: #fff;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-secondary {
  background: #edf5ff;
  color: #00009f;
}

.contact-status {
  color: #001066;
  font-weight: 700;
  margin-top: 1.5rem;
  min-height: 1.5rem;
  text-align: center;
}

.contact-status.is-error {
  color: #b00020;
}

.contact-status.is-success {
  color: #008100;
}

.contact-confirm {
  display: none;
}

.contact-confirm.is-active {
  display: block;
}

.contact-summary {
  background: #f7fcff;
  border: 1px solid #c9d8ff;
  color: #1a1a1a;
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
}

.contact-summary-row {
  border-bottom: 1px solid #d9e4ff;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(8rem, 12rem) 1fr;
  padding: 1rem;
}

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

.contact-summary-term {
  font-weight: 700;
}

.contact-footer {
  background: #b6ccff;
  color: #001066;
  font-size: 0.875rem;
  margin: 3rem auto 0;
  max-width: 67.5rem;
  padding: 1rem;
  text-align: center;
}

.contact-footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.contact-footer-links span {
  white-space: nowrap;
}

.contact-honeypot {
  display: none;
}

@media screen and (max-width: 79.9375rem) {
  .contact-nav {
    gap: 1rem;
  }

  .contact-nav .contact-nav-item {
    display: none;
  }
}

@media screen and (max-width: 47.9375rem) {
  .contact-header .ly_header_inner {
    align-items: center;
  }

  .contact-language {
    display: none;
  }

  .contact-main {
    padding-top: 2rem;
  }

  .contact-panel {
    padding: 1.5rem;
  }

  .contact-field,
  .contact-summary-row {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .contact-label {
    padding-top: 0;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-submit,
  .contact-secondary {
    width: 100%;
  }

  .contact-footer-links {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
}
