:root{
  --green-dark:#1c4a1a;
  --green-mid:#2f7d32;
  --green-light:#e8f3e6;
  --nav-green:#256e28;
  --header-blue:#155a7a;
  --header-blue2:#1f7fa3;
  --accent-red:#c0392b;
  --gold:#d8c98a;
  --text-dark:#2b2b2b;
  --muted:#6b6b6b;
  --border:#e0e0e0;
}
*{box-sizing:border-box;}
body{
  margin:0;
  font-family:"Segoe UI", Arial, sans-serif;
  color:var(--text-dark);
  background:#fff;
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;margin:0;padding:0;}

.container{
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
}
@media (max-width:768px){
  .container{padding:0 20px;}
}
@media (max-width:480px){
  .container{padding:0 14px;}
}

/* Top bar */
.topbar{
  padding:8px 0;
  border-bottom:1px solid var(--border);
}
.topbar-left{
  background:var(--green-mid);
  color:#fff;
  padding:8px 16px;
  border-radius:4px;
  font-size:14px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
}
.topbar-left .badge{
  background:var(--accent-red);
  color:#fff;
  font-size:10px;
  font-weight:700;
  padding:2px 6px;
  border-radius:10px;
}
.topbar-center select{
  padding:6px 12px;
  border:1px solid var(--border);
  border-radius:4px;
  font-size:14px;
  background:#fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><polygon points="0,0 10,0 5,6" fill="%23333"/></svg>') no-repeat right 10px center;
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:14px;
}
.topbar-right .social{
  width:32px;height:32px;
  border-radius:50%;
  border:1px solid #333;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;
  color:#333;
}
.topbar-right .staffmail{
  display:flex;align-items:center;gap:6px;
  color:#8a8a8a;
  font-size:14px;
}

@media (max-width:768px){
  .topbar .container{
    flex-direction:column;
    align-items:flex-start !important;
    gap:10px;
  }
  .topbar-left{font-size:12px;padding:6px 12px;}
  .topbar-right{flex-wrap:wrap;gap:10px;}
}
@media (max-width:480px){
  .topbar-right .staffmail span,
  .topbar-right .staffmail{font-size:12px;}
  .topbar-right .social{width:28px;height:28px;font-size:12px;}
}

/* Header / brand */
.brand{
  background:linear-gradient(90deg,var(--header-blue) 0%,var(--header-blue2) 55%,#4fa9c9 100%);
}
.brand .container{
  display:flex;
  align-items:center;
  gap:24px;
  padding-top:16px;
  padding-bottom:16px;
}
.brand .logo{
  width:80px;height:80px;
  border-radius:50%;
  background:#fff;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  border:2px solid var(--gold);
  overflow:hidden;
}
.brand .logo img{width:100%;height:100%;object-fit:cover;}
.brand .logo .placeholder{
  font-size:9px;
  color:var(--green-dark);
  text-align:center;
  font-weight:700;
  line-height:1.2;
}
.brand h1{
  color:#f2e9d0;
  font-size:34px;
  letter-spacing:1px;
  margin:0;
  font-weight:700;
  font-family:Georgia,'Times New Roman',serif;
}

@media (max-width:600px){
  .brand .container{gap:14px;}
  .brand .logo{width:56px;height:56px;}
  .brand h1{font-size:20px;letter-spacing:.5px;}
}
@media (max-width:360px){
  .brand h1{font-size:17px;}
}

/* Nav */
nav.mainnav{
  background:var(--nav-green);
}
nav.mainnav .container{
  display:flex;
}
nav.mainnav ul{
  display:flex;
  flex-wrap:wrap;
}
nav.mainnav li{
  position:relative;
}
nav.mainnav li:first-child a{
  background:#3f3f3f;
}
nav.mainnav a{
  display:flex;
  align-items:center;
  gap:6px;
  color:#fff;
  padding:16px 22px;
  font-size:15px;
  font-weight:500;
  white-space:nowrap;
}
nav.mainnav li.active > a,
nav.mainnav li:hover > a{
  background:#185018;
}
nav.mainnav a i.fa-chevron-down{font-size:10px;}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  padding:14px 4px;
  cursor:pointer;
}

@media (max-width:860px){
  nav.mainnav .container{
    flex-wrap:wrap;
    justify-content:space-between;
  }
  .nav-toggle{display:block;}
  nav.mainnav ul{
    display:none;
    flex-direction:column;
    width:100%;
    padding-bottom:8px;
  }
  nav.mainnav ul.open{display:flex;}
  nav.mainnav a{
    width:100%;
    padding:14px 4px;
    border-top:1px solid rgba(255,255,255,.15);
  }
}

/* News ticker */
.ticker{
  border-bottom:1px solid var(--border);
}
.ticker .container{
  display:flex;
  align-items:center;
  padding-top:12px;
  padding-bottom:12px;
  font-size:14px;
  font-weight:600;
  color:#3a3a3a;
  gap:24px;
  overflow:hidden;
  white-space:nowrap;
}
.ticker .item{
  display:flex;align-items:center;gap:8px;
}

@media (max-width:768px){
  .ticker .container{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    font-size:13px;
  }
}
.ticker .newsflag{
  background:var(--accent-red);
  color:#fff;
  font-size:10px;
  font-weight:800;
  padding:3px 8px;
  border-radius:50%/50%;
  clip-path:polygon(50% 0%, 61% 15%, 80% 8%, 82% 28%, 100% 35%, 88% 50%, 100% 65%, 82% 72%, 80% 92%, 61% 85%, 50% 100%, 39% 85%, 20% 92%, 18% 72%, 0% 65%, 12% 50%, 0% 35%, 18% 28%, 20% 8%, 39% 15%);
  padding:8px 6px;
}

/* Layout */
.layout{
  display:grid;
  grid-template-columns:230px 1fr 260px;
  gap:20px;
  padding-top:24px;
  padding-bottom:24px;
  align-items:start;
}

/* Left column */
.profile-card{
  border:1px solid var(--border);
  border-radius:6px;
  overflow:hidden;
  margin-bottom:18px;
  text-align:center;
  background:#fff;
}
.profile-card .photo{
  height:150px;
  background:linear-gradient(135deg,#cfe3cf,#8fbf8f);
  display:flex;align-items:center;justify-content:center;
  color:#3a5a3a;
  font-size:13px;
}
.profile-card .info{
  padding:10px 8px;
}
.profile-card .name{
  font-weight:700;
  font-size:14px;
  letter-spacing:.3px;
}
.profile-card .role{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
}

.related-title{
  color:var(--green-mid);
  font-weight:700;
  font-size:16px;
  margin:20px 0 8px;
  border-bottom:2px solid var(--green-mid);
  padding-bottom:8px;
}
.related-list li{
  display:flex;
  align-items:flex-start;
  gap:8px;
  padding:10px 0;
  font-size:14px;
  color:#2b2b2b;
  border-bottom:1px solid #f0f0f0;
}
.related-list li i{color:var(--green-mid);margin-top:3px;}

/* Center column */
.hero{
  border:1px solid var(--border);
  border-radius:6px;
  overflow:hidden;
  position:relative;
  background:#f4f4f4;
}
.hero .slide{
  height:460px;
  background:linear-gradient(135deg,#3a5a3a,#274a27);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.hero .slide .placeholder-text{
  color:#dfe7df;
  font-size:16px;
  text-align:center;
}
.hero .arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.85);
  display:flex;align-items:center;justify-content:center;
  color:#333;
  cursor:pointer;
}
.hero .arrow.left{left:16px;}
.hero .arrow.right{right:16px;}
.hero .caption{
  background:rgba(0,0,0,.65);
  color:#fff;
  text-align:center;
  padding:10px;
  font-size:14px;
  font-weight:600;
}

@media (max-width:768px){
  .hero .slide{height:220px;}
}
@media (max-width:420px){
  .hero .slide{height:180px;}
}

.article-card{
  display:flex;
  gap:16px;
  border:1px solid var(--border);
  border-radius:6px;
  margin-top:20px;
  overflow:hidden;
}
.article-card .thumb{
  width:220px;
  flex-shrink:0;
  background:linear-gradient(135deg,#2e7d32,#1c5b1f);
  display:flex;align-items:center;justify-content:center;
  color:#e8f3e6;
  font-size:12px;
  text-align:center;
  padding:10px;
}
.article-card .content{
  padding:16px 16px 16px 0;
}
.article-card h3{
  margin:0 0 8px;
  font-size:17px;
  line-height:1.3;
  color:#1a1a1a;
}
.article-card p{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

@media (max-width:600px){
  .article-card{flex-direction:column;}
  .article-card .thumb{width:100%;height:120px;}
  .article-card .content{padding:14px;}
}

/* Right column */
.side-card{
  display:block;
  border:1px solid var(--green-mid);
  border-radius:6px;
  padding:14px 16px;
  margin-bottom:16px;
  background:#fff;
}
.side-card:hover{
  background:var(--green-light);
}
.side-card .icon-title{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green-mid);
  font-weight:700;
  font-size:14px;
  margin-bottom:6px;
}
.side-card .icon-title i{font-size:16px;}
.side-card p{
  margin:0;
  font-size:14px;
  color:#2b2b2b;
  line-height:1.4;
}

@media (max-width:960px){
  .layout{grid-template-columns:1fr;}
}

/* Footer */
footer.site-footer{
  background:var(--green-dark);
  color:#dfe9df;
  padding-top:48px;
  padding-bottom:32px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap:32px;
}
.footer-grid h3{
  color:#fff;
  font-size:20px;
  font-weight:600;
  margin:0 0 20px;
}
.footer-grid p{
  margin:0 0 10px;
  font-size:14px;
  line-height:1.6;
  color:#dfe9df;
}
.footer-grid a{
  color:#dfe9df;
}
.footer-grid a:hover{
  color:#fff;
  text-decoration:underline;
}
.footer-social{
  display:flex;
  gap:12px;
  margin-top:20px;
}
.footer-social a{
  width:34px;height:34px;
  border-radius:50%;
  background:#fff;
  color:var(--green-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:15px;
}
.footer-divider{
  border:none;
  border-top:1px solid rgba(255,255,255,.25);
  margin:16px 0;
}
.footer-grid .stat-label{
  font-weight:700;
  color:#fff;
  font-size:14px;
  margin-bottom:8px;
}
.footer-video{
  position:relative;
  border-radius:4px;
  overflow:hidden;
  margin-bottom:14px;
}
.footer-video .thumb{
  height:150px;
  background:linear-gradient(135deg,#2e3a2e,#111a11);
  display:flex;align-items:center;justify-content:center;
  color:#dfe9df;
  font-size:12px;
  text-align:center;
}
.footer-video .play{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:52px;height:52px;
  border-radius:50%;
  background:rgba(0,0,0,.55);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  font-size:20px;
}

@media (max-width:960px){
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .footer-grid{grid-template-columns:1fr;}
}

/* ---------- Inner pages ---------- */

.page-hero{
  background:linear-gradient(90deg,var(--header-blue) 0%,var(--header-blue2) 55%,#4fa9c9 100%);
  padding:36px 0;
}
.page-hero h1{
  color:#fff;
  font-size:30px;
  margin:0 0 8px;
  font-family:Georgia,'Times New Roman',serif;
}
.breadcrumb{
  color:#dfe9df;
  font-size:14px;
}
.breadcrumb a{color:#f2e9d0;}
.breadcrumb a:hover{text-decoration:underline;}

.page-layout{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:32px;
  padding-top:32px;
  padding-bottom:40px;
  align-items:start;
}
@media (max-width:900px){
  .page-layout{grid-template-columns:1fr;}
}

.content-block{
  border:1px solid var(--border);
  border-radius:6px;
  padding:28px;
  margin-top:20px;
  margin-bottom:24px;
  background:#fff;
}
.content-block h2{
  color:var(--green-mid);
  font-size:22px;
  margin:0 0 14px;
  border-bottom:2px solid var(--green-mid);
  padding-bottom:10px;
}
.content-block p{
  font-size:15px;
  line-height:1.7;
  color:#333;
  margin:0 0 14px;
}
.content-block ul.plain{
  list-style:disc;
  padding-left:20px;
  margin:0 0 14px;
}
.content-block ul.plain li{
  font-size:15px;
  line-height:1.7;
  color:#333;
  margin-bottom:6px;
}

.card-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
@media (max-width:600px){
  .card-grid{grid-template-columns:1fr;}
}
.info-card{
  border:1px solid var(--border);
  border-radius:6px;
  padding:20px;
  background:#fff;
}
.info-card i.icon{
  color:var(--green-mid);
  font-size:26px;
  margin-bottom:10px;
  display:block;
}
.info-card h3{
  margin:0 0 8px;
  font-size:16px;
  color:#1a1a1a;
}
.info-card p{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
@media (max-width:600px){
  .team-grid{grid-template-columns:1fr;}
}

.post-card{
  display:flex;
  gap:16px;
  border:1px solid var(--border);
  border-radius:6px;
  padding:16px;
  margin-bottom:16px;
  background:#fff;
}
.post-card .thumb{
  width:150px;
  height:110px;
  flex-shrink:0;
  border-radius:4px;
  background:linear-gradient(135deg,#2e7d32,#1c5b1f);
  display:flex;align-items:center;justify-content:center;
  color:#e8f3e6;
  font-size:11px;
  text-align:center;
  padding:8px;
}
.post-card .meta{
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}
.post-card h3{
  margin:0 0 8px;
  font-size:16px;
  color:#1a1a1a;
}
.post-card p{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

@media (max-width:600px){
  .post-card{flex-direction:column;}
  .post-card .thumb{width:100%;height:120px;}
}

.table-scroll{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.doc-table{
  width:100%;
  min-width:420px;
  border-collapse:collapse;
}
.doc-table th, .doc-table td{
  text-align:left;
  padding:12px 10px;
  border-bottom:1px solid var(--border);
  font-size:14px;
}
.doc-table th{
  color:var(--green-mid);
  font-weight:700;
}
.doc-table a.download{
  color:var(--green-mid);
  font-weight:600;
}
.doc-table a.download:hover{text-decoration:underline;}

.form-field{
  margin-bottom:16px;
}
.form-field label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
  color:#2b2b2b;
}
.form-field input, .form-field textarea, .form-field select{
  width:100%;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:4px;
  font-size:14px;
  font-family:inherit;
}
.form-field textarea{resize:vertical;min-height:110px;}
.btn-primary{
  background:var(--green-mid);
  color:#fff;
  border:none;
  padding:12px 24px;
  border-radius:4px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}
.btn-primary:hover{background:var(--green-dark);}

.contact-info-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid #f0f0f0;
  font-size:14px;
}
.contact-info-list li i{color:var(--green-mid);margin-top:3px;width:16px;}

.login-box{
  max-width:420px;
  margin:0 auto;
  border:1px solid var(--border);
  border-radius:6px;
  padding:32px;
  background:#fff;
}
.login-box h2{
  text-align:center;
  color:var(--green-mid);
  margin:0 0 20px;
}

@media (max-width:600px){
  .content-block{padding:18px;}
  .side-card{padding:12px 14px;}
  .login-box{padding:20px;max-width:100%;}
  .page-hero h1{font-size:22px;}
  .page-hero{padding:24px 0;}
}
.event-item{
  display:flex;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--border);
}
.event-date{
  flex-shrink:0;
  width:64px;
  height:64px;
  background:var(--green-mid);
  color:#fff;
  border-radius:6px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-weight:700;
}
.event-date .day{font-size:20px;line-height:1;}
.event-date .mon{font-size:11px;text-transform:uppercase;}
.event-item h3{margin:0 0 6px;font-size:15px;}
.event-item p{margin:0;font-size:13px;color:var(--muted);}
