* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f5f7ef;
  color: #202124;
}

.site-header {
  height: 72px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f8f2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #202124;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: #202124;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.hero-section {
  min-height: 560px;
  padding: 90px 64px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(245, 247, 239, 0.25), rgba(245, 247, 239, 0.02)),
    url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-text h1 {
  margin: 0 0 18px;
  font-size: 68px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1.8px;
}

.sprout {
  font-size: 0.7em;
  vertical-align: middle;
}

.hero-text p {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 600;
}

.offer-section,
.stories-section,
.faq-section {
  padding: 82px 56px;
  background: #f5f7ef;
}

.section-title {
  text-align: center;
  margin-bottom: 46px;
}

.section-title h2 {
  margin: 0 0 14px;
  font-size: 38px;
  font-weight: 700;
}

.section-title p {
  margin: 0;
  color: rgba(32, 33, 36, 0.68);
  font-size: 16px;
}

.offer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 32px;
}

.offer-card {
  min-height: 190px;
  padding: 34px 38px;
  border: 1px solid rgba(32, 33, 36, 0.10);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.34);
}

.offer-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.offer-card p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(32, 33, 36, 0.72);
}

.offer-card a {
  text-decoration: none;
  font-weight: 700;
  color: #1f2a44;
}

.icon-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(45, 85, 255, 0.07);
  color: #243ec9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.center-card {
  grid-column: 1 / -1;
  width: 360px;
  justify-self: center;
}

.stories-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 52px;
  border: 2px solid #283064;
  color: #283064;
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  background: #171717;
  color: white;
  padding: 70px 64px 44px;
}

.footer-top {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 0;
  max-width: 180px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.footer-col h4 {
  margin: 0 0 18px;
  font-size: 18px;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.footer-line {
  max-width: 1160px;
  height: 1px;
  margin: 58px auto 34px;
  background: rgba(255, 255, 255, 0.24);
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}

.store-buttons {
  display: flex;
  gap: 16px;
}

.store-button {
  width: 150px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.15;
}

.store-button strong {
  font-size: 17px;
}

.footer-contact {
  display: flex;
  gap: 16px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 24px;
  }

  .hero-section {
    min-height: 460px;
    padding: 54px 28px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text p {
    font-size: 21px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .center-card {
    width: 100%;
  }

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

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

@media (max-width: 600px) {
  .hero-section {
    min-height: 420px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 19px;
  }

  .offer-section,
  .stories-section,
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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


/* Store download badges */
.store-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-badge-link img {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 600px) {
  .store-buttons {
    justify-content: center;
    gap: 10px;
  }

  .store-badge-link img {
    height: 38px;
  }
}

/* Sticky header + calm green site background */
html {
  background: #eef7ee;
}

body {
  background:
    radial-gradient(circle at top left, rgba(196, 224, 196, 0.55), transparent 34%),
    linear-gradient(180deg, #f3faf3 0%, #eef7ee 42%, #f7fbf4 100%);
  color: #1f2d25;
}

/* Keep header always visible while scrolling */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(243, 250, 243, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(79, 121, 86, 0.12);
  box-shadow: 0 8px 24px rgba(30, 70, 40, 0.06);
}

/* Make main sections sit on the calm green background */
.hero-section,
.offer-section,
.stories-section,
.faq-section {
  background: transparent;
}

/* Slightly soften cards so they match the new green background */
.offer-card {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(85, 125, 90, 0.14);
  box-shadow: 0 18px 40px rgba(39, 85, 50, 0.07);
}

/* Keep footer dark and separate from the green page */
.site-footer {
  margin-top: 0;
}


/* ===== Final hero background restore ===== */

body {
  background: #edf6ee;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(237, 246, 238, 0.92);
  backdrop-filter: blur(14px);
}

.hero-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 96px 8%;
  overflow: hidden;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(237, 246, 238, 0.92) 0%,
    rgba(237, 246, 238, 0.70) 42%,
    rgba(237, 246, 238, 0.18) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-content h1 {
  margin: 0 0 20px;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 1;
  font-weight: 700;
  color: #1f2a24;
}

.hero-content h1 span {
  font-size: 0.62em;
  vertical-align: middle;
}

.hero-content p {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 600;
  color: #25332b;
}

.hero-image {
  display: none !important;
}

.offer-section {
  background: #edf6ee;
}

.store-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.store-badge img {
  display: block;
  height: 42px;
  width: auto;
  border: 0;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    padding: 86px 24px;
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(237, 246, 238, 0.86) 0%,
      rgba(237, 246, 238, 0.58) 55%,
      rgba(237, 246, 238, 0.20) 100%
    );
  }
}


/* ===== Download page ===== */
.download-section {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: #edf6ee;
}

.download-card {
  width: 100%;
  max-width: 520px;
  padding: 42px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 42, 36, 0.10);
  box-shadow: 0 18px 50px rgba(31, 42, 36, 0.08);
}

.download-card h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #1f2a24;
}

.download-card p {
  margin: 0 0 26px;
  color: #46584c;
  font-size: 16px;
}

.download-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.download-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.download-badges img {
  display: block;
  height: 48px;
  width: auto;
  border: 0;
}

@media (max-width: 520px) {
  .download-section {
    padding: 100px 18px 64px;
  }

  .download-card {
    padding: 34px 20px;
  }

  .download-badges img {
    height: 44px;
  }
}
/* ===== End download page ===== */


/* ===== Help Center page ===== */
.help-page {
  background: #edf6ee;
  color: #1f2a24;
}

.help-container {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.help-hero {
  padding: 130px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(132, 195, 132, 0.22), transparent 34%),
    linear-gradient(180deg, #edf6ee 0%, #f7fbf7 100%);
}

.help-eyebrow {
  margin: 0 0 10px;
  color: #3f7f55;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.help-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #1f2a24;
}

.help-intro {
  max-width: 760px;
  margin: 0;
  color: #42564a;
  font-size: 19px;
  line-height: 1.8;
}

.help-content {
  padding: 24px 0 90px;
}

.help-card {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(31, 42, 36, 0.10);
  border-radius: 30px;
  padding: clamp(24px, 5vw, 56px);
  box-shadow: 0 20px 60px rgba(31, 42, 36, 0.08);
}

.help-section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(31, 42, 36, 0.10);
}

.help-section:first-child {
  padding-top: 0;
}

.help-section h2,
.help-closing h2 {
  margin: 0 0 20px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #1f2a24;
}

.help-section h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #25382d;
}

.help-section p,
.help-section li,
.help-closing p {
  color: #42564a;
  font-size: 16px;
  line-height: 1.85;
}

.help-section p {
  margin: 0 0 16px;
}

.help-section ul,
.help-section ol {
  margin: 0;
  padding-left: 22px;
}

.help-section li {
  margin-bottom: 10px;
}

.help-section a,
.help-closing a {
  color: #23663c;
  font-weight: 700;
  text-decoration: none;
}

.help-section a:hover {
  text-decoration: underline;
}

.help-qa {
  margin-bottom: 22px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(237, 246, 238, 0.72);
  border: 1px solid rgba(63, 127, 85, 0.10);
}

.help-note {
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(63, 127, 85, 0.08);
  border: 1px solid rgba(63, 127, 85, 0.14);
}

.help-closing {
  padding: 42px 0 0;
  text-align: center;
}

.help-closing h2 {
  margin-bottom: 12px;
}

@media (max-width: 680px) {
  .help-container {
    width: min(100% - 28px, 920px);
  }

  .help-hero {
    padding-top: 110px;
  }

  .help-card {
    border-radius: 24px;
  }

  .help-section {
    padding: 28px 0;
  }

  .help-section p,
  .help-section li,
  .help-closing p {
    font-size: 15px;
  }
}
/* ===== End Help Center page ===== */

/* Terms & Conditions page */
.legal-page {
  padding-top: 96px;
  background:
    radial-gradient(circle at top left, rgba(132, 195, 132, 0.18), transparent 34%),
    linear-gradient(180deg, #f1f8ef 0%, #edf6ea 100%);
}

.legal-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 24px 36px;
  text-align: center;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 85, 62, 0.12);
  color: #2f5d45;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(44, 84, 61, 0.08);
}

.legal-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: #17251d;
  letter-spacing: -1.5px;
}

.legal-hero p {
  max-width: 760px;
  margin: 0 auto 14px;
  color: #526458;
  font-size: 17px;
  line-height: 1.8;
}

.legal-updated {
  display: inline-block;
  margin-top: 12px !important;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(47, 93, 69, 0.08);
  color: #2f5d45 !important;
  font-weight: 700;
  font-size: 14px !important;
}

.legal-content {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 88px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(42, 85, 62, 0.12);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 18px 50px rgba(44, 84, 61, 0.08);
  backdrop-filter: blur(12px);
}

.legal-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  color: #17251d;
  letter-spacing: -0.4px;
}

.legal-card h2 span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(132, 195, 132, 0.16);
  font-size: 22px;
}

.legal-card p {
  color: #405146;
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 14px;
}

.legal-card ul {
  margin: 10px 0 18px;
  padding-left: 22px;
}

.legal-card li {
  color: #405146;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-card a {
  color: #2f6f4f;
  font-weight: 700;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-contact-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(47, 93, 69, 0.92), rgba(88, 139, 91, 0.92));
}

.legal-contact-card h2,
.legal-contact-card p {
  color: #ffffff;
  justify-content: center;
}

.legal-contact-card h2 span {
  background: rgba(255, 255, 255, 0.16);
}

.legal-email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #ffffff;
  color: #2f5d45 !important;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

@media (max-width: 720px) {
  .legal-page {
    padding-top: 76px;
  }

  .legal-hero {
    padding: 48px 18px 24px;
  }

  .legal-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .legal-card h2 {
    align-items: flex-start;
  }
}

/* Privacy / Legal Policy Pages */
.policy-page {
  background:
    radial-gradient(circle at top left, rgba(190, 222, 196, 0.38), transparent 34%),
    linear-gradient(180deg, #eef7ed 0%, #f7fbf4 45%, #eef7ed 100%);
  min-height: 100vh;
  padding-top: 96px;
}

.policy-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 82px 22px 46px;
  text-align: center;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(41, 92, 61, 0.12);
  color: #23352b;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(31, 67, 45, 0.06);
}

.policy-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  color: #17221b;
  letter-spacing: -1.5px;
}

.policy-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #435146;
  font-size: 18px;
  line-height: 1.8;
}

.policy-date {
  display: inline-block;
  margin-top: 24px;
  background: rgba(92, 133, 96, 0.12);
  color: #263c2e;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.policy-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 22px 90px;
}

.policy-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(41, 92, 61, 0.12);
  border-radius: 28px;
  padding: 34px;
  margin-bottom: 24px;
  box-shadow: 0 18px 45px rgba(31, 67, 45, 0.08);
  backdrop-filter: blur(10px);
}

.policy-card h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  color: #17221b;
  letter-spacing: -0.5px;
}

.policy-card h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  color: #243b2b;
}

.policy-card p {
  margin: 0 0 16px;
  color: #3f4c43;
  font-size: 16.5px;
  line-height: 1.85;
}

.policy-card ul {
  margin: 10px 0 18px;
  padding-left: 24px;
}

.policy-card li {
  margin-bottom: 10px;
  color: #3f4c43;
  font-size: 16.5px;
  line-height: 1.75;
}

.policy-card a {
  color: #1f6b3f;
  font-weight: 700;
  text-decoration: none;
}

.policy-card a:hover {
  text-decoration: underline;
}

.policy-note {
  background: rgba(230, 244, 226, 0.78);
  border-left: 4px solid #4b8b61;
  padding: 14px 16px;
  border-radius: 14px;
  color: #263c2e !important;
  font-weight: 600;
}

@media (max-width: 720px) {
  .policy-page {
    padding-top: 76px;
  }

  .policy-hero {
    padding: 54px 18px 32px;
  }

  .policy-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .policy-card p,
  .policy-card li {
    font-size: 15.5px;
  }
}

/* Fix App Store / Google Play badges in footer */
.site-footer .store-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer .store-image-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.site-footer .store-image-link img {
  height: 42px !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 600px) {
  .site-footer .store-buttons {
    justify-content: center;
  }

  .site-footer .store-image-link img {
    height: 38px !important;
    max-width: 140px !important;
  }
}

/* Contact / FAQ page */
.contact-page {
  padding-top: 96px;
}

.contact-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px 36px;
  text-align: center;
}

.contact-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  color: #14231d;
  letter-spacing: -0.04em;
}

.contact-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(20, 35, 29, 0.72);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 24px 48px;
  display: grid;
  gap: 18px;
}

.faq-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(20, 35, 29, 0.08);
  box-shadow: 0 18px 45px rgba(20, 35, 29, 0.07);
  backdrop-filter: blur(10px);
}

.faq-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 122, 95, 0.10);
  font-size: 25px;
}

.faq-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #14231d;
  letter-spacing: -0.02em;
}

.faq-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(20, 35, 29, 0.74);
}

.contact-form-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 24px 90px;
}

.contact-form-section .section-title {
  text-align: center;
  margin-bottom: 24px;
}

.contact-form-section .section-title h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 10px;
  color: #14231d;
}

.contact-form-section .section-title p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(20, 35, 29, 0.72);
  line-height: 1.7;
}

.contact-form-section .section-title a {
  color: #236b50;
  font-weight: 700;
  text-decoration: none;
}

.form-frame {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 35, 29, 0.08);
  box-shadow: 0 18px 45px rgba(20, 35, 29, 0.08);
}

.form-frame iframe {
  display: block;
  background: transparent;
}

@media (max-width: 700px) {
  .contact-page {
    padding-top: 76px;
  }

  .contact-hero {
    padding: 52px 18px 26px;
  }

  .faq-list,
  .contact-form-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .faq-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 22px;
  }

  .faq-card h2 {
    font-size: 21px;
  }

  .form-frame {
    border-radius: 22px;
  }
}

/* Read page */
.read-page {
  background: #eef7ed;
}

.read-hero {
  min-height: 42vh;
  padding: 120px 24px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(22, 87, 62, 0.72), rgba(45, 120, 88, 0.48)),
    url("../images/read.png") center/cover no-repeat;
  color: #ffffff;
}

.read-hero-text {
  max-width: 760px;
}

.read-hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.read-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.read-hero p {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.read-image-section {
  max-width: 1120px;
  margin: 70px auto 0;
  padding: 0 24px;
}

.read-image-section img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(24, 67, 49, 0.18);
}

.stories-intro {
  max-width: 820px;
  margin: 80px auto 34px;
  padding: 0 24px;
  text-align: center;
}

.stories-intro h2 {
  margin: 0 0 12px;
  color: #18251f;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stories-intro p {
  margin: 0;
  color: #53665c;
  font-size: 18px;
  line-height: 1.7;
}

.story-carousel {
  max-width: 1120px;
  margin: 0 auto 100px;
  padding: 16px 24px 28px;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.story-carousel::-webkit-scrollbar {
  height: 8px;
}

.story-carousel::-webkit-scrollbar-track {
  background: rgba(24, 37, 31, 0.08);
  border-radius: 999px;
}

.story-carousel::-webkit-scrollbar-thumb {
  background: rgba(45, 120, 88, 0.45);
  border-radius: 999px;
}

.sample-story-card {
  min-width: 320px;
  max-width: 360px;
  scroll-snap-align: center;
  padding: 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(40, 91, 65, 0.14);
  box-shadow: 0 20px 50px rgba(24, 67, 49, 0.12);
  backdrop-filter: blur(12px);
}

.story-card-logo {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
}

.story-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sample-story-card .story-text {
  margin: 0 0 28px;
  color: #26352e;
  font-size: 17px;
  line-height: 1.75;
}

.sample-story-card h3 {
  margin: 0 0 8px;
  color: #18251f;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-story-card span {
  color: #2f7a58;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .read-hero {
    min-height: 48vh;
    padding: 110px 20px 58px;
  }

  .read-image-section {
    margin-top: 42px;
  }

  .stories-intro {
    margin-top: 58px;
  }

  .sample-story-card {
    min-width: 280px;
    padding: 28px;
  }
}

/* Read page final slider fixes */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.read-page {
  background: #eef7ed;
  overflow-x: hidden;
}

.read-image-section {
  display: none !important;
}

.read-hero {
  min-height: 58vh;
  padding: 130px 24px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(14, 49, 38, 0.62), rgba(44, 107, 79, 0.32)),
    url("../images/read.png") center/cover no-repeat;
  color: #ffffff;
}

.read-hero-text {
  max-width: 820px;
  margin: 0 auto;
}

.read-hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.read-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.read-hero p {
  margin: 0 auto;
  max-width: 730px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.94);
}

.stories-intro {
  max-width: 880px;
  margin: 80px auto 36px;
  padding: 0 24px;
  text-align: center;
}

.stories-intro h2 {
  margin: 0 0 14px;
  color: #18251f;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.stories-intro p {
  margin: 0;
  color: #52675d;
  font-size: 18px;
  line-height: 1.7;
}

.story-slider-section {
  max-width: 980px;
  margin: 0 auto 110px;
  padding: 0 24px;
  overflow: hidden;
}

.story-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  cursor: grab;
  touch-action: pan-y;
}

.story-slider:active {
  cursor: grabbing;
}

.story-slider-track {
  display: flex;
  width: 100%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.story-slide {
  flex: 0 0 100%;
  width: 100%;
}

.sample-story-card.story-slide {
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  padding: clamp(32px, 6vw, 58px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(40, 91, 65, 0.14);
  box-shadow: 0 20px 50px rgba(24, 67, 49, 0.12);
  backdrop-filter: blur(12px);
}

.sample-story-card .story-card-logo {
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
}

.sample-story-card .story-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sample-story-card .story-text {
  margin: 0 0 32px;
  max-width: 820px;
  color: #26352e;
  font-size: clamp(19px, 2.3vw, 28px);
  line-height: 1.8;
}

.sample-story-card h3 {
  margin: 0 0 8px;
  color: #18251f;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-story-card span {
  color: #2f7a58;
  font-size: 14px;
  font-weight: 700;
}

.story-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.story-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 122, 88, 0.18);
  cursor: pointer;
  transition: width 240ms ease, background 240ms ease, transform 240ms ease;
}

.story-dot.active {
  width: 36px;
  background: #1f6f4d;
  transform: scale(1.02);
}

@media (max-width: 700px) {
  .read-hero {
    min-height: 54vh;
    padding: 115px 20px 70px;
  }

  .stories-intro {
    margin-top: 58px;
  }

  .story-slider-section {
    padding: 0 18px;
    margin-bottom: 80px;
  }

  .sample-story-card.story-slide {
    padding: 30px 24px;
  }

  .sample-story-card .story-text {
    font-size: 18px;
  }
}

/* Final fixes for Read page */

/* 1. Keep header fixed/sticky like the other pages */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: rgba(245, 250, 242, 0.92) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(31, 111, 77, 0.08) !important;
}

/* 2. Fix App Store / Google Play footer button size */
.site-footer .store-buttons {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.site-footer .store-buttons a {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-footer .store-buttons img {
  height: 38px !important;
  width: auto !important;
  max-width: 135px !important;
  object-fit: contain !important;
  display: block !important;
}

/* 3. Make Read page story cards smaller */
.story-slider-section {
  max-width: 760px !important;
  margin: 0 auto 90px !important;
  padding: 0 22px !important;
}

.story-slider {
  border-radius: 22px !important;
}

.sample-story-card.story-slide {
  padding: 30px 34px !important;
  border-radius: 22px !important;
  min-height: 260px !important;
}

.sample-story-card .story-card-logo {
  width: 38px !important;
  height: 38px !important;
  margin-bottom: 22px !important;
}

.sample-story-card .story-text {
  font-size: 19px !important;
  line-height: 1.65 !important;
  margin-bottom: 24px !important;
}

.sample-story-card h3 {
  font-size: 13px !important;
}

.sample-story-card span {
  font-size: 13px !important;
}

.story-dots {
  margin-top: 24px !important;
}

.story-dot {
  width: 11px !important;
  height: 11px !important;
}

.story-dot.active {
  width: 30px !important;
}

/* Mobile adjustment */
@media (max-width: 700px) {
  .site-footer .store-buttons img {
    height: 34px !important;
    max-width: 122px !important;
  }

  .story-slider-section {
    max-width: 100% !important;
    padding: 0 18px !important;
    margin-bottom: 76px !important;
  }

  .sample-story-card.story-slide {
    padding: 26px 22px !important;
    min-height: 240px !important;
  }

  .sample-story-card .story-text {
    font-size: 17px !important;
  }
}

/* Global fixed header fix for all pages */
:root {
  --panah-header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--panah-header-height);
}

body {
  padding-top: var(--panah-header-height) !important;
}

/* Header must always stay fixed at the top on every page */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--panah-header-height) !important;
  z-index: 99999 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  background: rgba(245, 250, 242, 0.94) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(31, 111, 77, 0.10) !important;

  padding: 0 56px !important;
  margin: 0 !important;
}

/* Logo area */
.site-header .brand {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.site-header .brand img {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
}

.site-header .brand span {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1f2933 !important;
}

/* Navigation */
.site-header .nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
}

.site-header .nav-links a {
  color: #1f2933 !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.site-header .nav-links a:hover {
  color: #2f7d5c !important;
}

/* Mobile */
@media (max-width: 700px) {
  :root {
    --panah-header-height: 64px;
  }

  .site-header {
    height: var(--panah-header-height) !important;
    padding: 0 22px !important;
  }

  .site-header .brand img {
    width: 28px !important;
    height: 28px !important;
  }

  .site-header .brand span {
    font-size: 16px !important;
  }

  .site-header .nav-links {
    gap: 18px !important;
  }

  .site-header .nav-links a {
    font-size: 14px !important;
  }
}

/* Stories Shared button on home page */
.stories-section .section-title {
  text-align: center;
}

.stories-read-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(31, 111, 77, 0.55);
  color: #1f6f4d;
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.stories-read-button:hover {
  transform: translateY(-2px);
  background: #1f6f4d;
  color: #ffffff;
}


/* ABOUT PAGE START */
.about-page {
  min-height: 100vh;
  padding: 120px 24px 80px;
  background:
    radial-gradient(circle at top left, rgba(194, 229, 202, 0.65), transparent 34%),
    linear-gradient(180deg, #eef7ee 0%, #f7fbf3 48%, #eef7ee 100%);
}

.about-hero {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 111, 77, 0.16);
  color: #285d46;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(28, 69, 47, 0.06);
}

.about-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 20px;
  color: #12261c;
  letter-spacing: -1.5px;
}

.about-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
  color: rgba(18, 38, 28, 0.78);
}

.about-intro-card {
  max-width: 900px;
  margin: 0 auto 34px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 111, 77, 0.14);
  box-shadow: 0 22px 50px rgba(28, 69, 47, 0.08);
}

.about-intro-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(18, 38, 28, 0.82);
}

.about-intro-card p + p {
  margin-top: 18px;
}

.about-values {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.about-value-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 111, 77, 0.14);
  box-shadow: 0 20px 44px rgba(28, 69, 47, 0.07);
}

.about-value-card.green {
  border-left: 6px solid #3fa66b;
}

.about-value-card.blue {
  border-left: 6px solid #3f7fcf;
}

.about-value-card.purple {
  border-left: 6px solid #8b5ecb;
}

.about-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 111, 77, 0.08);
  margin-bottom: 16px;
  font-size: 22px;
}

.about-value-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
  color: #12261c;
  letter-spacing: -0.4px;
}

.about-value-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(18, 38, 28, 0.78);
}

.about-value-card p + p {
  margin-top: 14px;
}

.about-closing {
  max-width: 820px;
  margin: 42px auto 0;
  text-align: center;
  padding: 38px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(31, 111, 77, 0.12), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(31, 111, 77, 0.14);
  box-shadow: 0 22px 50px rgba(28, 69, 47, 0.07);
}

.about-closing-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.about-closing h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  color: #12261c;
}

.about-closing p {
  margin: 0 auto;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(18, 38, 28, 0.78);
}

.site-footer .store-buttons img {
  height: 42px !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain !important;
  display: block;
}

@media (max-width: 700px) {
  .about-page {
    padding: 96px 16px 56px;
  }

  .about-intro-card,
  .about-value-card,
  .about-closing {
    padding: 24px;
    border-radius: 22px;
  }

  .about-value-card h2 {
    font-size: 24px;
  }

  .about-value-card p,
  .about-intro-card p,
  .about-closing p {
    font-size: 16px;
  }
}
/* ABOUT PAGE END */


/* FOOTER SOCIAL LINKS START */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  opacity: 1;
  transform: translateX(2px);
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}
/* FOOTER SOCIAL LINKS END */



/* FOOTER SOCIAL LINKS */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer-social .social-link:hover {
  color: #ffffff;
}

.footer-social .social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 15px;
}
