:root{
  --blue: #0e2e63;
  --blue2:#0b2550;
  --bg:#ffffff;
  --muted:#6b7280;
  --card:#f3f4f6;
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#111827;
  background: var(--bg);
}

.container{
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

/* NAV (same system) */
.brand{ display:flex; align-items:center; gap:12px; }
.brand__img {
  height: 65px;
  width: auto;
}

.nav{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 15px;
  padding-bottom: 7px;
}
.nav__menu{
  display:flex;
  gap:10px;
  margin-left:30px;
}
.nav__menu a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav__menu a:hover{ color: var(--blue); }
.nav__menu a:not(:last-child)::after{
  content:"|";
  margin-left:10px;
  margin-right:4px;
  color:black;
}

/* PAGE BAR */
.pagebar{
  background: var(--blue);
  color:#fff;
  padding: 22px 0;
}
.pagebar__inner{
  text-align:center;
}
.pagebar h1{
  margin:0;
  font-size: 23px;
  font-weight: 700;
}
.pagebar p{
  margin:4px 0 0;
  font-size: 16px;
  opacity: .9;
  font-weight: 600;
}

/* BLOG AREA */
.blog{
  padding: 28px 0 80px;
}

/* light background panel like screenshot */
.blog__panel{
  background:#eef3f8;
  padding: 26px;
  border-radius: 10px;
}

/* grid */
.blog__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* clickable post card */
.post{
  display:block;
  text-decoration:none;
  color:#111827;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius: 10px;
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.post:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.post__img{
  width:100%;
  height: 165px;
  object-fit: cover;
  display:block;
}

.post__body{
  padding: 14px 14px 16px;
}

.post__cat{
  font-size: 10px;
  font-weight: 700;
  color: #2563eb; /* blue label like screenshot */
  margin-bottom: 8px;
}

.post__title{
  margin:0 0 10px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.post__meta{
  font-size: 10px;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 10px;
}

.post__excerpt{
  margin:0;
  font-size: 11px;
  line-height: 1.55;
  color: #4b5563;
}

/* FOOTER (same system) */
.footer{
  background: var(--blue);
  color: #fff;
  padding: 40px 0 0;
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}
.footer__title{
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
}
.footer__text{
  margin: 0;
  max-width: 280px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.footer__col{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.footer__link{
  text-decoration:none;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}
.footer__link:hover{ color:#fff; }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
}
.footer__bottom-inner{
  display:flex;
  justify-content:center;
  text-align:center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* responsive */
@media (max-width: 980px){
  .blog__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px){
  .blog__grid{ grid-template-columns: 1fr; }
  .nav__menu{ flex-wrap: wrap; justify-content:flex-end; }
  .blog__panel{ padding: 18px; }
}
/* =========================
   OPTION C PROFESSIONAL NAV
   ========================= */

/* toggle button hidden on desktop */
.nav__toggle{
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0e2e63;
}

/* CTA button */
.nav__cta{
  background: #0e2e63;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 30px;
}

/* desktop stays same */
.nav__menu{
  display: flex;
  gap: 12px;
  align-items: center;
}

/* MOBILE */
@media (max-width: 900px){

  .nav__toggle{
    display: block;
  }

  .nav__inner{
    flex-direction: row;
    justify-content: space-between;
  }

  .nav__menu{
    position: absolute;
    top: 70px;
    right: 16px;
    background: #fff;
    flex-direction: column;
    width: 260px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    display: none; /* hidden by default */
  }

  .nav__menu.active{
    display: flex;
  }

  .nav__menu a{
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  .nav__cta{
    text-align: center;
    margin-top: 10px;
  }
}

@media (max-width: 900px) {

  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__text {
    order: 1;
  }

  .hero__image {
    order: 2;
    margin-top: 20px;
  }

  .hero__image img {
    max-width: 90%;
    height: auto;
  }
}

@media (max-width: 900px){

  .nav__menu{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 260px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
  }

  .nav__menu.active{
    display: flex;
  }

  .nav__inner{
    position: relative; /* IMPORTANT */
  }
}

@media (max-width: 900px) {

  .nav__menu a:not(:last-child)::after {
    content: "";
    display: none;
  }

}

@media (max-width: 900px){

  .footer__grid{
    grid-template-columns: 1fr;
    text-align: left;
    gap: 25px;
  }

  .footer__col{
    gap: 10px;
  }

  .footer__title{
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer__link{
    font-size: 14px;
  }

}

