/* =========================================================
   TALKA TREE – GLOBAL STYLES (CENTERED + SPACED VERSION)
   ========================================================= */

:root {
  --brand-green: #0e5b36;
  --brand-light: #f7f4ef;
  --brand-dark: #062318;

  --text-main: #07341f;
  --text-light: #355540;

  --radius-lg: 30px;
  --radius-md: 18px;

  --max-width: 820px;
}

/* Reset & basics */

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

html,
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--brand-light);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NO fixed-footer padding any more */
body {
  padding-bottom: 0;
}

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

a {
  text-decoration: none;
}

/* global text spacing */
p {
  margin-bottom: 16px;
}

/* centered layout container */

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* global section spacing */

main {
  padding-top: 16px;
}

/* more breathing room between sections */
main > section {
  margin: 70px 0;
}

/* ---------------------------------------------------------
   HEADER & NAV
---------------------------------------------------------- */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6ece5;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

/* brand */

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 32px;
  width: auto;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-green);
  margin-left: 10px;
  letter-spacing: 0.6px;
}

/* nav */

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.nav-links a:hover {
  color: var(--brand-green);
}

.btn-nav {
  background: var(--brand-green);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* hamburger */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-right: 8px; /* keeps it away from edge */
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--brand-green);
  border-radius: 3px;
}

/* mobile nav */

@media (max-width: 820px) {
  .header-inner {
    padding: 12px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 18px 24px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-bottom: 1px solid #e6ece5;
    display: none;
    z-index: 20;
  }

  .nav-links.open {
    display: flex;
  }

  .btn-nav {
    margin-top: 4px;
  }
}

/* ---------------------------------------------------------
   PAGE HEADERS
---------------------------------------------------------- */

.page-header {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-light);
}

/* ---------------------------------------------------------
   HERO (HOME)
---------------------------------------------------------- */

.hero {
  text-align: center;
  padding-top: 34px;
}

.hero-subtitle {
  color: var(--brand-green);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.02rem;
  color: var(--text-light);
}

/* centering content width further */
.hero .page {
  max-width: 720px;
}

/* more space before buttons */

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--brand-green);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
}

.hero-image {
  margin-top: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* ---------------------------------------------------------
   CARDS (features / services / partners)
---------------------------------------------------------- */

.cards {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.card,
.partner-card {
  background: #ffffff;
  padding: 24px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;   /* center titles + paragraphs */
}

.card-icon {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--brand-green);
}

.card h3,
.partner-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p,
.partner-card p {
  font-size: 1.01rem;
  color: var(--text-light);
}

/* ---------------------------------------------------------
   ABOUT CONTENT
---------------------------------------------------------- */

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

.about-content h2 {
  font-size: 1.6rem;
  margin: 26px 0 10px;
}

.about-content p {
  font-size: 1.03rem;
  color: var(--text-light);
}

/* ---------------------------------------------------------
   CONTACT FORM
---------------------------------------------------------- */

.contact-wrapper {
  max-width: 540px;
  margin: 0 auto;
}

form {
  text-align: left;
}

form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-main);
}

form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd7cf;
  font-size: 0.95rem;
  margin-bottom: 16px;
  background: #ffffff;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

#contact-msg {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ---------------------------------------------------------
   POLICY PAGES
---------------------------------------------------------- */

.policy {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.policy h2 {
  font-size: 1.4rem;
  margin: 26px 0 8px;
}

.policy p {
  font-size: 0.98rem;
  color: var(--text-light);
}

/* ---------------------------------------------------------
   FOOTER (no fixed position; background block)
---------------------------------------------------------- */

footer {
  background: var(--brand-dark);
  color: #ffffff;
  padding: 36px 0 24px;
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

footer p {
  font-size: 0.9rem;
  max-width: 620px;
  margin: 0 auto 12px;
}

/* social icons, like your screenshot */

.social-label {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  margin-top: 8px;
  margin-bottom: 6px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
  background: #0f3b25;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 6px 0 10px;
}

.footer-download-badges {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .footer-download-badges {
    justify-content: center;
  }
}

.badge-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  color: #fff !important;
}

.badge-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-links a {
  color: #d6efe0;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: #ffffff;
}

footer small {
  font-size: 0.76rem;
  opacity: 0.85;
}
