* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

:root {
  /* Primary Greens */
  --p-50: #e8f5e9;
  --p-100: #c8e6c9;
  --p-400: #66bb6a;
  --p-500: #2e7d32; /* Main Brand Color */
  --p-700: #256528;

  /* Neutrals */
  --n-50: #fafafa;
  --n-100: #f5f5f5;
  --n-300: #e0e0e0;
  --n-400: #bdbdbd;
  --n-500: #7b7b7b;
  --n-600: #757575;
  --n-700: #616161;
  --n-800: #424242;
  --n-900: #212121;

  /* Layout Constants */
  --bg-color: #ffffff;
  --container-max: 1200px;
  --transition: all 0.3s ease;
}

body {
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* NAV */
/* .navbar {
  background: #fff;
  border-bottom: 1px solid var(--n-300, #e0e0e0);
}

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

.nav-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a,
.container a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
} */

/* BUTTONS */
.btn-primary {
  background: #2f9e44;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 50px;
}

.btn-outline {
  border: 1px solid #2f9e44;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  color: #2f9e44;
}

/* HERO */
.hero {
  background: #f4fbf6;
  padding: 3rem 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.75rem;
  margin: auto;
}

.hero-text h1 {
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4.25rem; /* 113.333% */
}

.hero-buttons a {
  text-decoration: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hero img {
  width: 100%;
  border-radius: 16px;
}

/* SECTIONS */
.section {
  display: flex;
  padding: 5rem 6.25rem;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  align-self: stretch;

  text-align: center;
}

.section.light {
  background: #f9f9f9;

  /* display: flex;
  padding: 5rem 6.25rem;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  align-self: stretch; */
}

.section.light h2 {
  color: var(--p-500, #2e7d32);
  text-align: center;

  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.25rem; /* 130% */
}

.section.light h2 > span {
  color: var(--n-900, #212121);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  display: flex;
  padding: 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex: 1 0 0;

  border-radius: 0.75rem;
  background: #fff;
  box-shadow:
    0 12px 16px -4px rgba(107, 114, 128, 0.2),
    0 4px 6px -2px rgba(107, 114, 128, 0.17);
}

.testimonial {
  display: flex;
  max-width: 387px;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.star {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* CTA */
/* .cta {
  background: var(--p-50, #e8f5e9);
  padding: 5rem 6.25rem;

  display: flex;

  align-items: flex-start;
  gap: 2.5rem;
  align-self: stretch;
}

.report {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  flex: 1 0 0;
}

.report h2 {
  color: var(--Primary-700, #256528);
  text-align: center;

  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.25rem; 
}

.report p {
  color: var(--Primary-500, #2e7d32);
  text-align: center;

  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem; 
}

.pckup {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
} */

.cta {
  background: var(--p-50, #e8f5e9);
  padding: 4rem 6%;
  font-family: "Manrope", sans-serif;
}

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--p-700, #256528);
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1rem;
  color: var(--p-500, #2e7d32);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  color: var(--p-500, #2e7d32);
  color: #fff;
}

/* .btn-primary:hover {
  background: #256528;
} */

.btn-outline {
  border: 1.5px solid var(--p-500, #2e7d32);
  color: var(--p-500, #2e7d32);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(46, 125, 50, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cta-text h2 {
    font-size: 1.6rem;
  }
}

/* FOOTER */
/* .footer {
  background: #111;
  color: #ddd;
  padding: 2rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer a {
  color: #bbb;
  display: block;
  margin-top: 0.5rem;
} */

.footer {
  font-family: var(--font-main);
  background: #fff;
  padding: 4rem 6%;
  color: #222;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 4fr;
  gap: 3rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo span {
  color: #2e7d32;
}

.footer-brand p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.footer-links h4 {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.footer-links li:hover {
  color: #000;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.1rem;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero-text {
    align-items: center;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 1.5rem;
    line-height: 3rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

  .hero-buttons a {
    text-decoration: none;
  }

  .hero-image img {
    margin: auto;
    width: 100%;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 0.5rem;
  }

  .cta {
    text-align: center;
  }

  .cta-content {
    margin: auto;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

/* Features page starts here */

.subtitle {
  margin: 1rem 0 2rem;
  color: #555;
}

.center {
  justify-content: center;
}

.feature-icon {
  display: flex;
  flex-direction: column;
  width: 56px;
  height: 56px;
  margin: auto;

  padding: 14px;
  justify-content: center;
  align-items: center;
}

.feature-icon img {
  text-align: center;
  justify-content: center;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.feature-content h2 {
  display: flex;
  text-align: center;
  margin: auto;
  text-align: center;
  justify-content: center;
}

.feature-block {
  padding: 4rem 1rem;
  background: #f4fbf6;
}

.feature-block.alt {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-grid img {
  width: 100%;
  max-width: 420px;
  margin: auto;
}

.feature-grid ul {
  margin-top: 1rem;
}

.feature-grid li {
  margin-bottom: 0.6rem;
}

.feature-grid ul {
  list-style: none;
  padding-left: 0;
}

.feature-grid li {
  position: relative;
  padding-left: 28px;
}

.feature-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url("/assets/icons/Check\ icon.png"); /* path to your icon */
  background-size: contain;
  background-repeat: no-repeat;
}

/* Mobile */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* About page starts here */

/* Active link */
nav a.active {
  color: #2f9e44;
  font-weight: 600;
}

/* About page tweaks */
.about-hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.story-text {
  display: flex;
  max-width: 540px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}

.story-media img {
  width: 100%;
  border-radius: 16px;
}

.values-grid .value-card {
  text-align: center;
}

.values-grid {
  gap: 20px;
}

.values-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.impact-image img {
  width: 100%;
  border-radius: 16px;
}

.impact-kicker {
  color: #2f9e44;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.impact-text h2 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4rem;
}

.stat-box {
  padding: 1rem;
  border-radius: 12px;
  background: #f4fbf6;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2f9e44;
}

.stat-label {
  color: #555;
  margin-top: 0.25rem;
}

.cta.about-cta {
  background: #e6f7ec;
}

.cta-content.split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .story-grid,
  .impact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .values-grid .value-card {
    text-align: center;
  }

  .impact-stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-content.split {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .impact-stats {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-hero {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Contact page starts here */

/* Contact page */
.contact-hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.muted {
  color: #6b7280;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  text-align: left;

  display: flex;
  max-width: 1440px;
  padding: 5rem 6.25rem;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.contact-flex {
  display: flex;
  padding: 5rem 6.25rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  align-self: stretch;
}

.contact-flex h1 {
  color: var(--n-900, #212121);
  text-align: center;

  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4rem;
}

.contact-flex p {
  color: var(--n-700, #616161);
  text-align: center;

  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}

.form-heading {
  display: flex;
  max-width: 479px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-heading h2 {
  color: var(--n-800, #424242);
  text-align: center;

  font-style: normal;
  font-weight: 600;

  font-size: 2rem;

  line-height: 2.75rem;
}

.contact-form h2 {
  margin-bottom: 0.5rem;
}

.field {
  display: block;
  margin-top: 1rem;
}

.field span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  outline: none;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2f9e44;
  box-shadow: 0 0 0 3px rgba(47, 158, 68, 0.15);
}

.checkbox {
  display: flex;

  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  color: #374151;
}

.checkbox-icon {
  width: 18px;
  height: 18px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  /* appearance: none; */
  cursor: pointer;
  position: relative;
}

.btn-block {
  display: inline-block;
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
}

.error {
  display: block;
  color: #b91c1c;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  min-height: 1em;
}

.form-success {
  color: #166534;
  margin-top: 0.75rem;
  font-weight: 600;
  min-height: 1.2em;
}

.support-cards {
  display: grid;
  gap: 1rem;
}

.support-card {
  background: #e6f7ec;
  border-radius: 14px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.support-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #2f9e44;
  color: #fff;
  font-size: 1.1rem;
}

.map-wrap {
  max-width: 1169px;
  margin-top: 1.25rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.map {
  display: flex;
  max-width: 90rem;
  padding: 5rem 6.25rem;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
}

.map > .container > h2 {
  color: var(--Neutra-800, #424242);
  text-align: center;

  /* H2 */
  font-family: Manrope;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.25rem; /* 130% */
}

.map-size {
  max-width: 1169px;
}

/* FAQ */
.faq {
  max-width: 900px;
}

.faq h2 {
  color: var(--n-800, #424242);
  text-align: center;

  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.25rem;
}

.faq-list {
  margin-top: 1.5rem;
  text-align: left;
}

.faq-item {
  width: 100%;
  background: #fff;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.1rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
}

.faq-toggle {
  color: #2f9e44;
  font-size: 1.2rem;
  font-weight: 800;
}

.faq-answer {
  display: none;
  padding: 0.75rem 0.5rem 1.2rem;
  color: #4b5563;
  border-bottom: 1px solid #e5e7eb;
}

.faq-answer.open {
  display: block;
}

.cta-flex {
  text-align: center;
  display: flex;
  padding: 5rem 6.25rem;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  align-self: stretch;
}

.cta-flex > div > h2 {
  color: var(--p-700, #256528);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.25rem;
}

.cta-flex > div > p {
  color: var(--p-500, #2e7d32);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .map-wrap iframe {
    height: 260px;
  }

  .contact-hero {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .contact-flex {
    padding: 1.5rem 1rem;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 0.5rem;
    width: 100%;
  }

  .map {
    padding: 1.5rem 1rem;
  }

  .cta-flex,
  .cta {
    padding: 1.5rem 1rem;
  }

  .cta-flex > div > h2,
  .faq h2,
  .map > .container > h2,
  .contact-form h2,
  .contact-flex h1,
  .impact-text h2,
  .section.light h2,
  h1 {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }

  .section {
    padding: 1.5rem 1rem;
    gap: 2rem;
  }

  .story-text {
    gap: 2rem;
  }
}

.btn-primary {
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
}
