:root{
    --primary:#884848;
    --dark:#1d1d1d;
    --muted:#6b6b6b;
    --bg:#ffffff;
    --soft:#f7f7f7;
    --border:#e9e9e9;
  }
  
  *{box-sizing:border-box}
  body{
    margin:0;
    font-family:"Poppins",sans-serif;
    background:var(--bg);
    color:#222;
  }
  
  .wrap{
    width:min(1100px, 92%);
    margin-inline:auto;
  }
  
  /* top strip */
  .top-strip{
    background:#111;
    color:#fff;
    font-size:13px;
  }
  .strip-inner{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:10px 0;
    opacity:.95;
  }
  .strip-left,.strip-right{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
  }
  .sep{opacity:.5}
  .dot{
    width:7px;height:7px;border-radius:999px;background:var(--primary);
    display:inline-block;
  }
  
  /* header */
  .site-header{
    background:#fff;
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:50;
  }
  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
  }
  .brand img{
    height:46px;
    width:auto;
    display:block;
  }
  .nav{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    align-items:center;
  }
  .nav a{
    color:#222;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    padding:8px 10px;
    border-radius:8px;
  }
  .nav a:hover{background:rgba(136,72,72,.08)}
  .nav a.active{
    color:var(--primary);
    font-weight:600;
  }
  .btn{
    text-decoration:none;
    background:var(--primary);
    color:#fff;
    padding:10px 16px;
    border-radius:10px;
    font-weight:500;
    font-size:14px;
  }
  
  /* hero */
  .hero{
    background:var(--soft);
    border-bottom:1px solid var(--border);
    padding:54px 0 10px 54px;
  }
  .hero h1{
    margin:0 0 10px;
    color:var(--primary);
    font-size:40px;
    line-height:1.1;
  }
  .hero p{
    margin:0;
    color:var(--muted);
    max-width:820px;
  }
  .crumbs{
    margin-top:18px;
    display:flex;
    gap:10px;
    align-items:center;
    font-size:25px;
    color:#444;
  }
  .crumbs a{
    color:#444;
    text-decoration:none;
  }
  .chev{opacity:.6}
  
  /* section */
  .section{
    padding:60px 0 70px;
  }
  .section h2{
    margin:0 0 18px;
    font-size:22px;
    color:var(--primary);
  }
  .grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:16px;
  }
  .card{
    border:1px solid var(--border);
    padding:18px;
    border-radius:14px;
    background:#fff;
  }
/* Accreditation logo container */
.logo-box{
    width: 100%;
    height: 160px;          /* increase height for full visual impact */
    overflow: hidden;       /* hides overflow cleanly */
    background: rgba(136,72,72,0.06);
  }
  
  /* Accreditation images — FULL SIZE */
  .logo-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;      /* fills the entire box */
    display: block;
  }
  
  
  .card p{
    margin:0;
    color:var(--muted);
    font-size:13px;
  }
  
  /* footer */
  .footer{
    background:#111;
    color:#fff;
    padding:48px 0 18px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:24px;
  }
  .footer h3{
    margin:0 0 10px;
    color:#fff;
    font-size:15px;
  }
  .footer p{
    margin:0 0 8px;
    color:rgba(255,255,255,.85);
    font-size:13px;
  }
  .copyright{
    margin-top:24px;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.12);
    font-size:12px;
    color:rgba(255,255,255,.75);
  }
  
  
  /* responsive */
  @media (max-width: 980px){
    .grid{grid-template-columns:repeat(2, minmax(0,1fr));}
    .footer-grid{grid-template-columns:1fr;}
  }
  @media (max-width: 520px){
    .grid{grid-template-columns:1fr;}
    .hero h1{font-size:32px;}
  }
  