
:root{
  --tle-green:#1E5B2B;
  --tle-gold:#C7A227;
  --tle-dark:#0F1E17;
  --tle-light:#fff;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--tle-dark);background:#ffffff;line-height:1.6}
.container{max-width:1100px;margin:0 auto;padding:24px 20px}
.header{display:flex;align-items:center;gap:16px;padding:14px 0;border-bottom:1px solid #eee}
.header img{width:64px;height:64px;object-fit:contain}
.brand h1{font-size:1.35rem;margin:0;color:var(--tle-green);font-weight:800}
.brand small{color:#444}
.hero{background:linear-gradient(180deg, rgba(199,162,39,0.08), rgba(30,91,43,0.06));padding:48px 0;border-bottom:1px solid #eee}
.hero h2{margin:0 0 8px 0;font-size:2rem;color:var(--tle-green)}
.badge{display:inline-block;background:rgba(199,162,39,.15);border:1px solid var(--tle-gold);color:var(--tle-gold);padding:6px 10px;border-radius:999px;font-weight:700}
.grid{display:grid;gap:18px;grid-template-columns:1fr}
@media(min-width:860px){.grid{grid-template-columns:1fr 1fr}}
.card{border:1px solid #eee;border-radius:12px;padding:18px;box-shadow:0 2px 12px rgba(0,0,0,.03);background:var(--tle-light)}
.card h3{margin:0 0 8px;color:var(--tle-green)}
ul{padding-left:18px;margin:8px 0}
.notice{background:#fffbec;border:1px solid var(--tle-gold);padding:12px 14px;border-radius:8px}
.cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}
.btn{display:inline-block;background:var(--tle-green);color:#fff;text-decoration:none;padding:12px 18px;border-radius:10px;font-weight:700}
.btn.alt{background:var(--tle-gold);color:#111}
.footer{border-top:1px solid #eee;margin-top:28px;padding-top:16px;text-align:center;color:#666}
.small{font-size:.92rem;color:#555}
.section{padding:28px 0}
.oplist{list-style:none;padding-left:0;margin:0}
.oplist li{display:flex;gap:8px;margin:6px 0}
.oplist .dot{width:10px;height:10px;border-radius:50%;background:var(--tle-green);margin-top:9px}

/* Form styles */
form{display:grid;gap:10px;margin-top:10px}
label{font-weight:600}
input[type="text"],input[type="email"],textarea{
  width:100%;padding:10px;border:1px solid #ddd;border-radius:8px;font:inherit
}
textarea{min-height:120px;resize:vertical}
button[type="submit"]{border:0}
.smallmuted{font-size:.9rem;color:#666}
