
:root{
  --bg:#eef8e9;
  --ink:#111827;
  --accent:#11a152;
  --accent-2:#0e7a41;
  --card:#ffffff;
  --shadow:0 10px 25px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
  color:var(--ink); background:var(--bg);
}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:24px 20px}
/* HERO (Solution 1 style) */
.hero{display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;margin-top:8px}
.hero img.logo{width:240px;height:auto;border-radius:18px;box-shadow:var(--shadow)}
.hero .title{font-weight:900;font-size:clamp(36px,6vw,56px);color:#12a055;-webkit-text-stroke:3px #000;letter-spacing:.5px;line-height:1}
.hero .tag{font-style:italic;color:#1b3a1b;opacity:.9}

/* GRID CARDS (Solution 1) */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:26px}
@media (max-width:900px){.grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.grid{grid-template-columns:1fr}}
.card{background:var(--card);border-radius:22px;padding:22px 18px;box-shadow:var(--shadow);display:flex;flex-direction:column;align-items:center;gap:10px;transition:transform .2s, box-shadow .2s}
.card:hover{transform:translateY(-4px);box-shadow:0 16px 35px rgba(0,0,0,.12)}
.card .icon{width:56px;height:56px;object-fit:contain}
.card .ctitle{font-weight:800;text-align:center}
.card p{margin:6px 0 0 0;text-align:center;color:#374151;font-size:15px;}

/* BANNER (Solution 3 style simplified) */
.banner{background:#e8f5e9;border-bottom:1px solid #d8ead9}
.banner .row{display:flex;gap:14px;align-items:center;justify-content:center;flex-wrap:wrap;padding:16px 10px}
.bubble{width:140px;height:140px;border-radius:999px;background:#fff;box-shadow:var(--shadow);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:10px;transition:transform .15s, background .2s}
.bubble img{width:40px;height:40px;object-fit:contain;margin-bottom:8px}
.bubble .btxt{font-weight:800;font-size:14px;line-height:1.15}
.bubble:hover{transform:translateY(-3px);background:#f5fff7}
.bubble.active{background:#c9f3d8;outline:3px solid var(--accent);transform:none}

/* Content page layout */
.article{background:#fff;border-radius:18px;padding:24px 22px;box-shadow:var(--shadow);margin-top:16px}
.article h1{font-size:28px;margin:0 0 6px 0}
.article .lead{color:#0f5132;font-weight:600;margin-bottom:8px}
.article p{margin:10px 0;color:#374151}
.cta{margin-top:16px;display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.btn{background:var(--accent);color:#fff;padding:10px 14px;border-radius:12px;font-weight:800;box-shadow:var(--shadow)}
.btn:hover{background:var(--accent-2)}

/* footer */
footer{margin:40px 0 10px 0;text-align:center;color:#6b7280}


/* --- Customizations for single-line banner & two-column layout --- */
.banner .row{display:flex;gap:14px;align-items:center;justify-content:flex-start;flex-wrap:nowrap;overflow:auto;padding:16px 10px;white-space:nowrap}
.banner .row.no-wrap .bubble{flex:0 0 auto}
.bubble.logo{width:140px;height:140px;display:flex;flex-direction:column;align-items:center;justify-content:center}
.bubble.logo img{width:64px;height:64px;object-fit:contain;border-radius:12px}
/* Two-column layout */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start;margin-top:16px}
.two-col .left .article{margin:0}
.two-col .right .photos{background:#fff;border-radius:18px;padding:18px;box-shadow:var(--shadow);display:flex;align-items:center;justify-content:center;min-height:200px}
.two-col .right .photos img{max-width:100%;height:auto;object-fit:contain;opacity:.95}
@media (max-width: 900px){ .two-col{grid-template-columns:1fr} }


/* === Banner full-width & wrapping === */
.banner{width:100%}
.banner .container{max-width:100%; padding:16px 12px; margin:0 auto}
.banner .row{display:flex; gap:14px; align-items:center; justify-content:center; flex-wrap:wrap; overflow:visible; white-space:normal}
/* bubble logo kept */
.bubble.logo{width:140px;height:140px;display:flex;flex-direction:column;align-items:center;justify-content:center}
.bubble.logo img{width:64px;height:64px;object-fit:contain;border-radius:12px}
/* === Two-column layout desktop; single column <700px === */
.two-col{display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:24px; align-items:start; margin-top:16px}
@media (max-width:700px){ .two-col{grid-template-columns:1fr} }
.two-col .right .photos{background:#fff;border-radius:18px;padding:18px;box-shadow:var(--shadow);display:flex;align-items:center;justify-content:center;min-height:220px}
.two-col .right .photos img{max-width:100%;height:auto;object-fit:contain}


/* === Body text font === */
.article p, .article .lead{font-family:"Segoe Print", cursive, sans-serif !important;}
