* {
  box-sizing: border-box;
}

:root {
  --midnight: #111827;
  --deep-blue: #1e3a8a;
  --royal: #2563eb;
  --gold: #f5c451;
  --silver: #e5e7eb;
  --light: #f6f8fc;
  --text: #1f2937;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--light);
  color: var(--text);
}

.hero {
  min-height: 600px;
  color: var(--white);
  background:
    linear-gradient(rgba(17, 24, 39, 0.84), rgba(30, 58, 138, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(245, 196, 81, 0.30), transparent 28%);
}

.sub-header {
  color: var(--white);
  background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
}

nav {
  max-width: 1120px;
  margin: auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 900;
  letter-spacing: 1.5px;
}

.links a {
  color: var(--white);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 700;
}

.hero-content,
.page-title {
  max-width: 920px;
  margin: 100px auto 0;
  padding: 0 24px;
}

.tag {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(245, 196, 81, 0.16);
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  border: 1px solid rgba(245, 196, 81, 0.5);
}

.hero-content h1,
.page-title h1 {
  font-size: 60px;
  line-height: 1.03;
  margin: 20px 0;
  max-width: 820px;
}

.hero-content p {
  max-width: 700px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

main {
  max-width: 1120px;
  margin: auto;
  padding: 65px 24px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.10);
  border-left: 8px solid var(--gold);
}

.small-label {
  color: var(--royal);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
}

.about h2,
.support h2,
.policy-card h2 {
  color: var(--deep-blue);
}

.about h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 10px 0 0;
}

.about p,
.support p,
.policy-card p {
  line-height: 1.85;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.cards article {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  border-top: 5px solid var(--royal);
}

.cards h3 {
  color: var(--deep-blue);
}

.support {
  margin-top: 48px;
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef3ff, #fff8e7);
  border: 1px solid var(--silver);
}

.page-title {
  margin-top: 60px;
  padding-bottom: 85px;
}

.page-title h1 {
  font-size: 52px;
}

.page-title p {
  color: rgba(255, 255, 255, 0.76);
}

.policy-main {
  max-width: 920px;
  padding-top: 50px;
}

.policy-card {
  background: var(--white);
  padding: 42px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
  border-top: 8px solid var(--gold);
}

.policy-card h2 {
  margin-top: 30px;
}

footer {
  background: var(--midnight);
  color: var(--white);
  text-align: center;
  padding: 24px;
}

@media (max-width: 800px) {
  nav {
    flex-direction: column;
    gap: 14px;
  }

  .links a {
    margin: 0 8px;
  }

  .hero-content {
    margin-top: 65px;
  }

  .hero-content h1,
  .page-title h1 {
    font-size: 38px;
  }

  .about,
  .cards {
    grid-template-columns: 1fr;
  }

  .policy-card {
    padding: 28px;
  }
}
