
    :root{
      --green:#064529;
      --green2:#0b6b3b;
      --gold:#c79a37;
      --gold2:#f4d58a;
      --cream:#fbf6e9;
      --dark:#0c1c16;
      --muted:#63706a;
      --white:#ffffff;
      --shadow:0 18px 45px rgba(5,45,26,.16);
      --radius:24px;
    }
    *{margin:0;padding:0;box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      font-family:Inter,Hind,Arial,sans-serif;
      color:var(--dark);
      background:var(--cream);
      line-height:1.6;
      overflow-x:hidden;
    }
    a{text-decoration:none;color:inherit}
    .topbar{
      background:var(--green);
      color:#fff;
      padding:10px 6%;
      font-size:14px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .topbar b{color:var(--gold2)}
    .nav{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(199,154,55,.22);
      padding:16px 6%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:24px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      color:var(--green);
      font-size:30px;
      letter-spacing:-1px;
    }
    .brand span{color:var(--gold)}
    .brand-icon{
      width:48px;height:48px;border-radius:16px;
      background:linear-gradient(135deg,var(--gold),#fff2b8);
      display:grid;place-items:center;color:var(--green);
      box-shadow:0 10px 22px rgba(199,154,55,.25);
      font-size:26px;
    }
    .menu{
      display:flex;
      align-items:center;
      gap:22px;
      font-weight:700;
      color:#173b2c;
      font-size:15px;
    }
    .menu a:hover{color:var(--gold)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:13px 22px;
      font-weight:800;
      border:1px solid transparent;
      transition:.25s ease;
      cursor:pointer;
      white-space:nowrap;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--green),var(--green2));
      color:#fff;
      box-shadow:0 12px 28px rgba(6,69,41,.25);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(6,69,41,.32)}
    .btn-gold{
      background:linear-gradient(135deg,var(--gold),#f7da8d);
      color:#102019;
      box-shadow:0 12px 28px rgba(199,154,55,.28);
    }
    .btn-outline{
      border-color:rgba(255,255,255,.6);
      color:#fff;
      background:rgba(255,255,255,.12);
    }
    .hero{
      position:relative;
      min-height:740px;
      padding:86px 6% 60px;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:50px;
      align-items:center;
      background:
        radial-gradient(circle at 85% 10%, rgba(244,213,138,.45), transparent 36%),
        linear-gradient(135deg, rgba(6,69,41,.94), rgba(7,78,43,.76)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80') center/cover;
      color:#fff;
      overflow:hidden;
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:auto -10% -45% -10%;
      height:340px;
      background:var(--cream);
      transform:rotate(-3deg);
      transform-origin:left top;
    }
    .eyebrow{
      color:var(--gold2);
      text-transform:uppercase;
      letter-spacing:.16em;
      font-weight:800;
      font-size:13px;
      margin-bottom:16px;
    }
    .hero h1{
      font-size:clamp(42px,6vw,78px);
      line-height:.98;
      letter-spacing:-3px;
      max-width:850px;
      margin-bottom:22px;
    }
    .hero h1 span{color:var(--gold2)}
    .hero p{
      font-size:20px;
      color:rgba(255,255,255,.88);
      max-width:680px;
      margin-bottom:30px;
    }
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:34px}
    .hero-card{
      position:relative;
      z-index:2;
      background:rgba(255,255,255,.94);
      color:var(--dark);
      border-radius:32px;
      padding:26px;
      box-shadow:var(--shadow);
      border:1px solid rgba(244,213,138,.55);
    }
    .hero-card img{
      width:100%;
      height:340px;
      object-fit:cover;
      border-radius:24px;
      margin-bottom:22px;
    }
    .quick-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .stat{
      background:#fffaf0;
      border:1px solid rgba(199,154,55,.35);
      border-radius:18px;
      padding:16px;
    }
    .stat b{
      display:block;
      color:var(--green);
      font-size:20px;
    }
    .stat small{color:var(--muted);font-weight:700}
    .section{
      position:relative;
      z-index:2;
      padding:84px 6%;
    }
    .section-title{
      max-width:850px;
      margin:0 auto 44px;
      text-align:center;
    }
    .section-title h2{
      font-size:clamp(32px,4vw,52px);
      line-height:1.08;
      color:var(--green);
      letter-spacing:-1.5px;
      margin-bottom:14px;
    }
    .section-title p{color:var(--muted);font-size:18px}
    .cards{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }
    .card{
      background:#fff;
      border-radius:var(--radius);
      padding:30px;
      box-shadow:var(--shadow);
      border:1px solid rgba(199,154,55,.18);
      overflow:hidden;
      position:relative;
    }
    .card::before{
      content:"";
      position:absolute;
      top:0;left:0;right:0;height:5px;
      background:linear-gradient(90deg,var(--green),var(--gold));
    }
    .icon{
      width:56px;height:56px;border-radius:18px;
      background:linear-gradient(135deg,#fff6da,#e9c36f);
      display:grid;place-items:center;
      font-size:28px;
      margin-bottom:20px;
    }
    .card h3{
      color:var(--green);
      font-size:24px;
      margin-bottom:10px;
    }
    .card p{color:var(--muted)}
    .service-link{
      display:inline-flex;
      margin-top:18px;
      color:var(--gold);
      font-weight:800;
    }
    .deals{
      background:#fff;
    }
    .deal-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }
    .deal{
      min-height:380px;
      border-radius:30px;
      overflow:hidden;
      position:relative;
      display:flex;
      align-items:flex-end;
      color:#fff;
      box-shadow:var(--shadow);
    }
    .deal:nth-child(1){background:linear-gradient(to top,rgba(6,69,41,.95),rgba(6,69,41,.15)),url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80') center/cover}
    .deal:nth-child(2){background:linear-gradient(to top,rgba(6,69,41,.95),rgba(6,69,41,.15)),url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=900&q=80') center/cover}
    .deal:nth-child(3){background:linear-gradient(to top,rgba(6,69,41,.95),rgba(6,69,41,.15)),url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=900&q=80') center/cover}
    .deal-content{padding:28px;width:100%}
    .tag{
      display:inline-flex;
      background:rgba(244,213,138,.96);
      color:#102019;
      border-radius:999px;
      padding:8px 14px;
      font-size:13px;
      font-weight:900;
      margin-bottom:14px;
    }
    .deal h3{font-size:28px;line-height:1.1;margin-bottom:8px}
    .price{font-size:26px;color:var(--gold2);font-weight:900}
    .process{
      background:linear-gradient(135deg,#fdf9ef,#eef8ef);
    }
    .steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
      counter-reset:step;
    }
    .step{
      background:#fff;
      border-radius:22px;
      padding:26px;
      border:1px solid rgba(199,154,55,.18);
      box-shadow:0 12px 30px rgba(0,0,0,.06);
      position:relative;
    }
    .step::before{
      counter-increment:step;
      content:"0" counter(step);
      position:absolute;
      top:-14px;right:22px;
      background:var(--green);
      color:#fff;
      width:44px;height:44px;border-radius:50%;
      display:grid;place-items:center;
      font-weight:900;
      border:3px solid var(--gold2);
    }
    .step h3{color:var(--green);font-size:20px;margin-bottom:8px}
    .markets{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:26px;
    }
    .market{
      border-radius:28px;
      min-height:260px;
      overflow:hidden;
      position:relative;
      color:#fff;
      display:flex;
      align-items:flex-end;
      box-shadow:var(--shadow);
    }
    .market:nth-child(1){background:linear-gradient(to top,rgba(6,69,41,.95),transparent),url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1200&q=80') center/cover}
    .market:nth-child(2){background:linear-gradient(to top,rgba(6,69,41,.95),transparent),url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80') center/cover}
    .market .inner{padding:30px}
    .market h3{font-size:30px}
    .lead{
      background:linear-gradient(135deg,var(--green),#022c1a);
      color:#fff;
      border-radius:36px;
      padding:46px;
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:34px;
      align-items:center;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .lead h2{font-size:42px;line-height:1.08;margin-bottom:14px;color:var(--gold2)}
    .lead p{color:rgba(255,255,255,.86)}
    .form{
      background:#fff;
      color:var(--dark);
      padding:28px;
      border-radius:26px;
    }
    .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    input,select,textarea{
      width:100%;
      padding:14px 15px;
      border-radius:14px;
      border:1px solid #d8ded9;
      font:inherit;
      outline:none;
      background:#fff;
    }
    textarea{min-height:96px;grid-column:1/-1}
    input:focus,select:focus,textarea:focus{border-color:var(--gold);box-shadow:0 0 0 4px rgba(199,154,55,.12)}
    .faq{
      max-width:920px;
      margin:auto;
    }
    details{
      background:#fff;
      border-radius:18px;
      padding:20px 24px;
      margin-bottom:14px;
      box-shadow:0 10px 24px rgba(0,0,0,.05);
      border:1px solid rgba(199,154,55,.16);
    }
    summary{
      cursor:pointer;
      font-weight:800;
      color:var(--green);
      font-size:18px;
    }
    details p{margin-top:12px;color:var(--muted)}
    footer{
      background:#061d13;
      color:#dbe8df;
      padding:48px 6% 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr .8fr;
      gap:24px;
      margin-bottom:28px;
    }
    footer h3{color:#fff;margin-bottom:14px}
    footer a{display:block;color:#dbe8df;margin:8px 0}
    footer a:hover{color:var(--gold2)}
    .copy{
      border-top:1px solid rgba(255,255,255,.14);
      padding-top:22px;
      color:#9fb0a6;
      font-size:14px;
    }
    .whatsapp{
      position:fixed;
      right:22px;
      bottom:22px;
      z-index:80;
      background:#25d366;
      color:#fff;
      width:62px;height:62px;
      border-radius:50%;
      display:grid;place-items:center;
      font-size:30px;
      box-shadow:0 12px 28px rgba(0,0,0,.2);
    }
    @media(max-width:980px){
      .hero,.lead{grid-template-columns:1fr}
      .cards,.deal-grid{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr 1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .menu{display:none}
    }
    @media(max-width:620px){
      .topbar{font-size:12px}
      .brand{font-size:24px}
      .hero{padding-top:56px;min-height:auto}
      .hero-card img{height:240px}
      .quick-stats,.steps,.markets,.form-grid{grid-template-columns:1fr}
      .section{padding:62px 5%}
      .lead{padding:28px}
      .lead h2{font-size:32px}
      .footer-grid{grid-template-columns:1fr}
    }
  

    /* Added for original logo + full working pages */
    .brand-logo{
      width:56px;
      height:56px;
      object-fit:contain;
      border-radius:16px;
      background:#fff;
      padding:4px;
      box-shadow:0 10px 22px rgba(199,154,55,.22);
      border:1px solid rgba(199,154,55,.28);
    }
    .page-hero{
      background:
        radial-gradient(circle at 85% 15%, rgba(244,213,138,.35), transparent 35%),
        linear-gradient(135deg, rgba(6,69,41,.96), rgba(7,78,43,.84)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80') center/cover;
      color:#fff;
      text-align:center;
      padding:90px 6%;
    }
    .page-hero h1{
      font-size:clamp(36px,5vw,64px);
      line-height:1.05;
      margin-bottom:14px;
      color:#f4d58a;
      letter-spacing:-1.5px;
    }
    .page-hero p{
      max-width:850px;
      margin:0 auto;
      color:rgba(255,255,255,.88);
      font-size:19px;
    }
    .wide-card{
      background:#fff;
      border-radius:28px;
      padding:34px;
      box-shadow:var(--shadow);
      border:1px solid rgba(199,154,55,.18);
      margin-bottom:28px;
    }
    .two-col{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:28px;
      align-items:center;
    }
    .photo-box{
      border-radius:28px;
      overflow:hidden;
      box-shadow:var(--shadow);
      min-height:360px;
    }
    .photo-box img{
      width:100%;
      height:420px;
      object-fit:cover;
    }
    .article{
      max-width:920px;
      margin:auto;
      background:#fff;
      border-radius:28px;
      padding:34px;
      box-shadow:var(--shadow);
      border:1px solid rgba(199,154,55,.18);
    }
    .article h2{
      color:var(--green);
      margin:26px 0 10px;
      font-size:30px;
      line-height:1.15;
    }
    .article p,.article li{color:var(--muted);font-size:18px}
    .article ul{margin-left:22px;margin-top:10px}
    .blog-card-img{
      height:210px;
      border-radius:20px;
      margin-bottom:18px;
      background-size:cover;
      background-position:center;
    }
    .notice{
      background:#fff7db;
      border:1px solid rgba(199,154,55,.35);
      border-radius:18px;
      padding:16px;
      margin-top:20px;
      color:#5f4611;
      font-weight:700;
    }
    .footer-logo-row{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
    }
    .footer-logo-row img{
      width:58px;
      height:58px;
      object-fit:contain;
      background:#fff;
      border-radius:14px;
      padding:4px;
    }
    @media(max-width:980px){
      .two-col{grid-template-columns:1fr}
    }
