:root{
  --green:#1f4d3d;
  --green-dark:#153629;
  --terracotta:#c1682f;
  --terracotta-dark:#9c5223;
  --ink:#2a2620;
  --ink-soft:#655f54;
  --line:#e6e0d3;
  --cream:#faf7f0;
  --panel:#f2ede1;
  --white:#ffffff;
  --radius:14px;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Karla',sans-serif;color:var(--ink);line-height:1.7;background:var(--cream);}
h1,h2,h3,h4{font-family:'Lora',serif;color:var(--green-dark);font-weight:600;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
.container{max-width:1140px;margin:0 auto;padding:0 24px;}
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;border-radius:var(--radius);font-weight:600;font-size:15px;cursor:pointer;border:2px solid transparent;transition:.2s;}
.btn-primary{background:var(--terracotta);color:#fff;}
.btn-primary:hover{background:var(--terracotta-dark);}
.btn-outline{background:transparent;border:2px solid var(--green);color:var(--green);}
.btn-outline:hover{background:var(--green);color:#fff;}
.eyebrow{color:var(--terracotta-dark);font-weight:700;font-size:12.5px;letter-spacing:1.5px;text-transform:uppercase;font-family:'Karla',sans-serif;}
section{padding:72px 0;}
.section-head{max-width:660px;margin:0 auto 40px;text-align:center;}
.section-head h2{font-size:30px;margin:8px 0 12px;}
.section-head p{color:var(--ink-soft);font-size:16px;}

/* Top strip */
.top-strip{background:var(--green-dark);color:#dce8e0;font-size:13px;padding:8px 0;}
.top-strip .container{display:flex;justify-content:center;text-align:center;}

/* Header */
header{background:var(--cream);border-bottom:1px solid var(--line);position:sticky;top:0;z-index:100;}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:17px 0;}
.logo{display:flex;align-items:center;gap:10px;font-family:'Lora',serif;font-weight:600;font-size:19px;color:var(--green-dark);}
.logo-badge{width:40px;height:40px;border-radius:var(--radius);background:var(--green);display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;font-weight:700;font-family:'Lora',serif;}
.logo small{display:block;font-family:'Karla',sans-serif;font-weight:400;font-size:11px;color:var(--ink-soft);}
nav ul{display:flex;gap:26px;list-style:none;}
nav a{font-weight:600;font-size:14px;color:var(--ink);}
nav a:hover{color:var(--terracotta-dark);}
.header-cta{display:flex;align-items:center;gap:20px;}

/* Breadcrumb */
.breadcrumb{background:var(--panel);padding:12px 0;font-size:13px;color:var(--ink-soft);}
.breadcrumb a{color:var(--green);font-weight:600;}
.breadcrumb a:hover{text-decoration:underline;}

/* Hero */
.hero{padding:58px 0 0;}
.hero-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:48px;align-items:center;}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:var(--panel);color:var(--green-dark);font-weight:600;font-size:12.5px;padding:7px 16px;border-radius:100px;margin-bottom:20px;border:1px solid var(--line);}
.hero h1{font-size:41px;line-height:1.22;margin-bottom:18px;}
.hero h1 span{color:var(--terracotta);}
.hero p{color:var(--ink-soft);font-size:16.5px;margin-bottom:26px;max-width:490px;}
.hero-actions{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin-bottom:28px;}
.hero-stats{display:flex;gap:30px;border-top:1px solid var(--line);padding-top:20px;}
.hero-stats div strong{display:block;font-family:'Lora',serif;font-size:21px;color:var(--green-dark);}
.hero-stats div span{font-size:12.5px;color:var(--ink-soft);}
.hero-media{position:relative;}
.hero-media img{border-radius:var(--radius);box-shadow:0 18px 40px rgba(31,77,61,.14);width:100%;height:410px;object-fit:cover;}
.hero-card{position:absolute;bottom:-16px;left:-16px;background:#fff;padding:14px 20px;border-radius:var(--radius);box-shadow:0 12px 28px rgba(31,77,61,.16);display:flex;align-items:center;gap:12px;}
.hero-card .icon{width:34px;height:34px;border-radius:50%;background:var(--panel);color:var(--green);display:flex;align-items:center;justify-content:center;font-weight:800;}
.hero-card strong{display:block;font-size:13px;color:var(--green-dark);}
.hero-card span{font-size:11px;color:var(--ink-soft);}

/* Interior hero */
.page-hero{background:var(--panel);padding:46px 0;}
.page-hero-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:40px;align-items:center;}
.page-hero h1{font-size:31px;line-height:1.26;margin-bottom:14px;}
.page-hero p{color:var(--ink-soft);font-size:16px;max-width:520px;margin-bottom:16px;}
.page-hero img{border-radius:var(--radius);width:100%;height:280px;object-fit:cover;box-shadow:0 14px 32px rgba(31,77,61,.12);}
.page-meta{font-size:12.5px;color:var(--ink-soft);margin-bottom:10px;display:flex;gap:14px;flex-wrap:wrap;}

/* Byline */
.byline{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--ink-soft);margin:16px 0 0;}
.byline .avatar{width:30px;height:30px;border-radius:50%;background:var(--green);color:#fff;display:flex;align-items:center;justify-content:center;font-family:'Lora',serif;font-weight:700;font-size:12px;}

/* Trust bar */
.trust-bar{background:var(--green);padding:20px 0;}
.trust-bar .container{display:flex;justify-content:space-between;flex-wrap:wrap;gap:20px;}
.trust-item{display:flex;align-items:center;gap:12px;color:#fff;flex:1;min-width:220px;}
.trust-item .icon{width:34px;height:34px;flex-shrink:0;border-radius:50%;background:rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;}
.trust-item strong{display:block;font-size:13.5px;}
.trust-item span{font-size:11.5px;color:#cfe0d7;}

/* About split */
.about{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center;}
.about img{border-radius:var(--radius);box-shadow:0 14px 32px rgba(31,77,61,.1);height:380px;object-fit:cover;width:100%;}
.about-text h2{font-size:27px;margin:8px 0 15px;}
.about-text p{color:var(--ink-soft);margin-bottom:14px;}
.check-list{list-style:none;margin-top:16px;}
.check-list li{display:flex;gap:12px;align-items:flex-start;margin-bottom:10px;font-size:15px;color:var(--ink);}
.check-list li .tick{width:19px;height:19px;border-radius:50%;background:var(--terracotta);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:11px;font-weight:800;}

/* Benefits grid */
.benefits{background:var(--white);}
.benefit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.benefit-card{background:var(--cream);padding:26px 22px;border-radius:var(--radius);border:1px solid var(--line);}
.benefit-card .icon{width:38px;height:38px;border-radius:50%;background:var(--green);color:#fff;display:flex;align-items:center;justify-content:center;margin-bottom:14px;font-weight:700;font-size:13px;font-family:'Lora',serif;}
.benefit-card h3{font-size:16px;margin-bottom:7px;}
.benefit-card p{color:var(--ink-soft);font-size:13.5px;}

/* Quick facts */
.facts-card{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:24px;display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}
.facts-card .fact strong{display:block;font-size:11.5px;color:var(--ink-soft);text-transform:uppercase;letter-spacing:.4px;margin-bottom:4px;}
.facts-card .fact span{font-size:14.5px;color:var(--green-dark);font-weight:700;}

/* Steps */
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.step-card{position:relative;padding:26px 20px;border-radius:var(--radius);border:1px solid var(--line);background:var(--cream);text-align:left;}
.step-num{width:32px;height:32px;border-radius:50%;background:var(--terracotta);color:#fff;font-family:'Lora',serif;font-weight:700;display:flex;align-items:center;justify-content:center;margin-bottom:12px;font-size:13px;}
.step-card h3{font-size:15px;margin-bottom:6px;}
.step-card p{font-size:12.5px;color:var(--ink-soft);}

/* FAQ */
.faq-item{border-bottom:1px solid var(--line);padding:20px 0;}
.faq-item h3{font-size:16px;margin-bottom:7px;color:var(--green-dark);}
.faq-item p{color:var(--ink-soft);font-size:14px;}
.mini-faq{margin-top:8px;}
.mini-faq h4{font-size:15px;color:var(--green-dark);margin:18px 0 12px;font-family:'Lora',serif;}

/* Country chips */
.country-chip-wrap{display:flex;flex-wrap:wrap;gap:9px;justify-content:center;max-width:900px;margin:0 auto 30px;}
.country-chip{background:var(--cream);border:1px solid var(--line);padding:9px 17px;border-radius:100px;font-size:13.5px;font-weight:600;color:var(--ink);}
.country-chip:hover{border-color:var(--green);color:var(--green);}
.countries{text-align:center;}

/* Related / hub link grid */
.link-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.link-grid a{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);padding:14px 16px;font-size:13.5px;font-weight:600;color:var(--ink);}
.link-grid a:hover{border-color:var(--green);color:var(--green);}
.hub-group h3{font-size:19px;margin:32px 0 15px;}
.hub-group:first-child h3{margin-top:0;}

/* Long-form pillar content */
.pillar-body h2{font-size:24px;margin:38px 0 14px;}
.pillar-body h3{font-size:18px;margin:24px 0 10px;color:var(--terracotta-dark);}
.pillar-body p{margin-bottom:14px;color:var(--ink);}
.pillar-body ul, .pillar-body ol{margin:0 0 16px 22px;color:var(--ink);}
.pillar-body li{margin-bottom:6px;}
.pillar-toc{background:var(--panel);border-radius:var(--radius);padding:22px 26px;margin-bottom:12px;}
.pillar-toc h4{font-family:'Lora',serif;font-size:16px;margin-bottom:10px;color:var(--green-dark);}
.pillar-toc ol{margin:0 0 0 20px;}
.pillar-toc a{color:var(--green);font-weight:600;}
.pillar-toc a:hover{text-decoration:underline;}

/* CTA banner */
.cta-banner{background:var(--green);border-radius:var(--radius);padding:52px;display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;color:#fff;}
.cta-banner h2{color:#fff;font-size:26px;margin-bottom:8px;}
.cta-banner p{color:#cfe0d7;}
.cta-banner .btn-primary{background:var(--terracotta);}

/* Footer */
footer{background:var(--green-dark);color:#b9ccc2;padding-top:58px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.1);}
.footer-grid h4{color:#fff;font-size:13.5px;margin-bottom:14px;}
.footer-grid ul{list-style:none;}
.footer-grid li{margin-bottom:9px;font-size:13.5px;}
.footer-grid a:hover{color:var(--terracotta);}
.footer-about p{font-size:13.5px;margin:13px 0;max-width:270px;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:20px 0;font-size:12px;flex-wrap:wrap;gap:10px;}
.payment-icons{display:flex;gap:10px;}
.payment-icons span{background:rgba(255,255,255,.08);padding:6px 12px;border-radius:6px;font-size:11px;}

@media (max-width:900px){
  nav{display:none;}
  .hero-grid, .about, .page-hero-grid{grid-template-columns:1fr;}
  .hero h1{font-size:30px;}
  .benefit-grid{grid-template-columns:1fr 1fr;}
  .steps-grid{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .cta-banner{padding:32px 20px;text-align:center;justify-content:center;}
  .facts-card{grid-template-columns:1fr;}
  .link-grid{grid-template-columns:1fr 1fr;}
}
