

/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter';
  background:#f7fafc;
  color:#181c1e;
  line-height:1.6;
}


/* CONTAINER */

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}


/* SECTION */

.section{
  padding:40px 0;
}


/* HEADER */

.header{
  position:sticky;
  top:0;
  background:#ffffff;
  border-bottom:1px solid #e0e3e5;
  z-index:1000;
}

.navbar{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-family:'Inter';
  font-size:32px;
  font-weight:700;
  color:#041627;
}

.nav-links{
  display:flex;
  gap:32px;
}

.nav-links a{
  text-decoration:none;
  color:#545f72;
  font-size:16px;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#041627;
}

.nav-links .active{
  color:#041627;
  font-weight:700;
}


/* HERO */

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}

.hero-content h1{
  font-family:'Inter';
  font-size:56px;
  line-height:1.1;
  margin:20px 0;
  color:#041627;
}

.hero-content p{
  font-size:18px;
  color:#44474c;
  max-width:600px;
}

.badge{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  background:#d2e4fb;
  color:#041627;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.hero-buttons{
  margin-top:32px;
  display:flex;
  gap:16px;
}

.btn-primary,
.btn-outline{
  padding:14px 28px;
  border-radius:8px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.btn-primary{
  border:none;
  background:#041627;
  color:white;
}

.btn-primary:hover{
  opacity:0.9;
}

.btn-outline{
  border:1px solid #041627;
  background:transparent;
  color:#041627;
}

.btn-outline:hover{
  background:#d2e4fb;
}

.hero-image{
  border-radius:16px;
  overflow:hidden;
  border:1px solid #e0e3e5;
  height:450px;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}


/* SECTION HEADING */

.section-heading{
  margin-bottom:48px;
}

.section-heading h2{
  font-family:'Source Serif 4',serif;
  font-size:40px;
  color:#041627;
}

.section-heading p{
  margin-top:8px;
  color:#545f72;
}


/* Mission-Vision-Governance Section */
.mission-vision-governance {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  margin: 60px auto;
  max-width: 1100px;
  font-family: 'Inter', sans-serif;
}

.mission-vision-governance h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #041627;
}

.mission-vision-governance h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #041627;
}

.mission-vision-governance p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.mv-left {
  flex: 2;
  background: #f9fbff;
  border: 1px solid #e0e3e5;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.mv-right {
  flex: 1;
  background: #041627;
  border: 1px solid #e0e3e5;
  border-radius: 18px;
  padding: 28px;
}

.mv-right h2,
.mv-right h3,
.mv-right p,
.mv-right strong {
  color: #ffffff;
}

.mv-right .regional div{ 
  color: #ffffff;
}

.mv-block {
  margin-bottom: 20px;
}

/* New layout specifics */
.mv-top{
  display:flex;
  gap:24px;
}
.mv-item{
  flex:1;
}
.mv-item h2{
  font-size:20px;
  margin-bottom:8px;
  color:#041627;
}
.mv-item p{
  color:#334155;
  font-size:15px;
  line-height:1.6;
}

.mv-right .regional{
  margin-top:18px;
  background: rgba(255,255,255,0.06);
  padding:12px 14px;
  border-radius:8px;
  display:inline-block;
}
.mv-right .regional strong{
  display:block;
  margin-bottom:6px;
  font-size:14px;
}

/* Align sizing with main container */
.mission-vision-governance{
  max-width:1200px;
  padding: 0 24px;
}

/* Responsive: stack on small screens */
@media (max-width: 880px){
  .mission-vision-governance{flex-direction:column; gap:20px}
  .mv-top{flex-direction:column}
  .card-grid{grid-template-columns:1fr}
}


/* CARDS */

.card-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.card{
  background:white;
  border:1px solid #e0e3e5;
  border-radius:16px;
  padding:32px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.card-line{
  width:60px;
  height:4px;
  background:#4894e2;
  margin-bottom:24px;
}

.card h3{
  font-size:24px;
  font-weight:700;
  margin-bottom:24px;
  color:#041627;
}

.card-info{
  margin-bottom:16px;
}

.card-info span{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  color:#545f72;
  margin-bottom:4px;
  font-weight:700;
}

.card-info strong{
  font-size:16px;
}

.card ul{
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid #e0e3e5;
}

.card ul li{
  margin-bottom:12px;
  color:#44474c;
}


/* FOOTER */

.footer{
  background:#041627;
  color:white;
  padding-top:64px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
}

.footer-logo{
  font-family:'Inter';
  font-size:32px;
  margin-bottom:16px;
}

.footer-text{
  color:#b7c8de;
  max-width:400px;
}

.footer h4{
  margin-bottom:20px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.footer-links{
  list-style:none;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  text-decoration:none;
  color:#b7c8de;
  transition:0.3s;
}

.footer-links a:hover{
  color:white;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:24px;
  text-align:center;
  color:#b7c8de;
  font-size:14px;
}


/* RESPONSIVE */

@media(max-width:992px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  .card-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .navbar{
    flex-direction:column;
    height:auto;
    padding:20px 0;
    gap:20px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-content h1{
    font-size:40px;
  }

  .card-grid{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

}
