.mowaq-php-site {
  display: flex;
  flex-direction: column;
  /* no min-height: 100vh — with short copy it left a big blank area under the page */
}

.mowaq-php-skip {
  position: absolute;
  left: -9999px;
  z-index: 10000;
}

.mowaq-php-skip:focus {
  left: 0.5rem;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  color: var(--primary-color, #000080);
  text-decoration: none;
  box-shadow: 0 0 0 2px var(--primary-color, #000080);
}

.mowaq-php-header {
  background: #fff;
  border-bottom: 1px solid var(--primary-soft, rgba(0, 0, 128, 0.2));
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mowaq-php-header__inner {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.mowaq-php-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-color, #000080) !important;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.mowaq-php-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mowaq-php-nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 0.45rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.mowaq-php-nav a:hover {
  background: var(--accent-soft, rgba(249, 168, 37, 0.2));
  color: var(--primary-color, #000080);
}

.mowaq-php-nav a.is-active {
  background: var(--primary-color, #000080);
  color: #fff;
}

.mowaq-php-nav a.is-active:hover {
  background: var(--primary-active, #00005c);
  color: #fff;
}

.mowaq-main {
  flex: 0 0 auto;
  max-width: 48rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.25rem 2rem;
}

.mowaq-main h1 {
  color: var(--primary-color, #000080);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.mowaq-lead {
  font-size: 1.1rem;
  color: #444;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.mowaq-prose p {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: #2b2b2b;
}

.mowaq-prose a {
  color: var(--primary-color, #000080);
  font-weight: 600;
}

.mowaq-prose a:hover {
  color: var(--accent-hover, #D99000);
}

.mowaq-php-footer {
  background: var(--mowaq-site-footer-gradient, linear-gradient(90deg, #0b2c6a 0%, #000a4a 100%));
  color: #e8e8e8;
  font-size: 0.9rem;
}

.mowaq-php-footer__inner {
  max-width: 70rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.mowaq-php-footer a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.mowaq-php-footer a:hover {
  border-bottom-color: currentColor;
}

.mowaq-faq__block h2 {
  font-size: 1.1rem;
  color: var(--primary-color, #000080);
  margin: 1.5rem 0 0.35rem;
}

.mowaq-faq__block:first-child h2 {
  margin-top: 0;
}

.mowaq-contact-form {
  margin-top: 1.5rem;
  max-width: 32rem;
}

.mowaq-contact-form__row {
  margin-bottom: 0;
}

.mowaq-contact-form__note {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 1rem;
}

.mowaq-contact-form__field {
  margin-bottom: 1rem;
}

.mowaq-contact-form__field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

.mowaq-contact-form__field input,
.mowaq-contact-form__field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0.6rem;
  font: inherit;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.mowaq-contact-form__submit {
  margin-top: 0.5rem;
  padding: 0.5rem 1.25rem;
  font: inherit;
  font-weight: 600;
  color: #fff;
  background: var(--primary-color, #000080);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.mowaq-contact-form__submit:hover {
  background: var(--primary-active, #00005c);
}
