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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f9f7fc;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Color palette */
:root {
  --primary: #4b247a;
  --accent: #d4a017;
  --light: #fdf8ee;
  --dark: #1a1029;
  --muted: #777;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header & Nav */

header {
  background: linear-gradient(135deg, var(--primary), #6b3fa5);
  color: #fff;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-section img {
  height: 46px;
  width: auto;
}

.logo-section span {
  font-weight: 700;
  font-size: 1.1rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
}

nav li a {
  border-bottom: 2px solid transparent;
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

nav li a:hover {
  border-color: var(--accent);
}

nav li a.active {
  border-color: var(--accent);
  color: #ffe7a6;
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, #fdf8ee, #f3e8ff);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: var(--light);
  color: var(--primary);
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #3a1b5e;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Sections */

section.page-section {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 0.4rem;
  color: var(--dark);
  font-size: 1.7rem;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0.2rem auto 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Layout helpers */

.card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #eee;
  box-shadow: 0 8px 22px rgba(0,0,0,0.03);
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: var(--light);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.text-muted {
  color: var(--muted);
}

ul.bullet-list {
  list-style: none;
  margin-top: 0.4rem;
}

ul.bullet-list li::before {
  content: "●";
  color: var(--accent);
  margin-right: 0.4rem;
  font-size: 0.7rem;
}

ul.bullet-list li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #444;
}

/* Grids */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Impact numbers */

.impact-card {
  text-align: center;
}

.impact-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.impact-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.impact-note {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */

footer {
  background: var(--dark);
  color: #ccc;
  padding: 1.1rem 0;
  font-size: 0.82rem;
}

footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  nav ul {
    display: none;
  }

  .hero {
    padding-top: 2.7rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}