:root {
  --green: #2e7d32;
  --red: #c62828;
  --ink: #1f2330;
  --muted: #5b6270;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --border: #e2e6ee;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Noto Nastaliq Urdu", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 2;
}

.container { width: min(1080px, 92%); margin: 0 auto; }

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(46,125,50,.3); }
.btn-lg { padding: 14px 34px; font-size: 1.1rem; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: #fff; border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-flag { font-size: 2rem; }
.brand-name { font-size: 1.3rem; }
.brand-tag { color: var(--muted); font-size: .9rem; }

.hero {
  background: linear-gradient(135deg, #e8f5e9, #f5f7fa);
  text-align: center; padding: 70px 0;
}
.hero-title { font-size: 2.1rem; margin-bottom: 14px; }
.hero-sub { color: var(--muted); max-width: 640px; margin: 0 auto 28px; }

.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 1.7rem; text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 34px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; text-align: center; transition: box-shadow .2s ease;
}
.card:hover { box-shadow: 0 10px 26px rgba(0,0,0,.08); }
.card-icon { font-size: 2.4rem; margin-bottom: 10px; }
.card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.card p { color: var(--muted); }

.policy-list { max-width: 760px; margin: 0 auto 24px; list-style: none; }
.policy-list li {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 12px;
}
.warning {
  max-width: 760px; margin: 0 auto;
  background: #fff4e5; border: 1px solid #ffcc80; color: #8a5300;
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
}

.form { max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 6px; font-weight: 700; }
.req { color: var(--red); }
.optional { color: var(--muted); font-weight: 400; font-size: .85rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 10px; font-family: inherit; font-size: 1rem; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,.15);
}
.form-note { margin-top: 14px; text-align: center; min-height: 24px; }
.form-note.success { color: var(--green); }
.form-note.error { color: var(--red); }

.site-footer { background: #1f2330; color: #cfd4df; text-align: center; padding: 30px 0; }
.footer-warn { color: #ffcc80; margin-top: 6px; font-size: .9rem; }

@media (max-width: 640px) {
  .header-cta { display: none; }
  .hero-title { font-size: 1.6rem; }
}