body {
  font-family: 'Poppins', sans-serif, Arial, Helvetica;
  margin: 0;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* Hero section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.hero-left img {
  width: 100%;
  border-radius: 8px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero-right .logo {
  width: 150px;
}
.hero-right .btn {
  display: inline-block;
  background: #2f3a8f;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.hero-right .btn:hover {
  background: #1e275f;
}
.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.carousel-controls button {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  cursor: pointer;
}

/* Vision */
.vision {
  text-align: center;
  padding: 20px 0;
}
.vision h2 {
  color: #2f3a8f;
  margin-bottom: 10px;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.info-grid h3 {
  color: #2f3a8f;
}
.financial .report-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0px;
  text-align: center;
  color: white;
  background-color: #1e275f;
}
.financial .report-card img {
  width: 100%;
  border-radius: 4px;
}
.financial .report-card span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

/* Innovation line */
.innovation {
  text-align: center;
  margin-top: 60px;
}
.innovation h2 {
  color: #2f3a8f;
  font-weight: 400;
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero, .info-grid {
    grid-template-columns: 1fr;
  }
}

.who-financial {
  padding: 40px 0;
}

.who-financial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.who-image img {
  width: 300px;
    height: 500px;
  border-radius: 8px;
}

.who-text h3 {
  color: #2f3a8f;
  margin-top: 0;
  margin-bottom: 15px;
}
.who-text p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
}

.financial-card h3 {
  color: #000;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.report-box {
  border-radius: 12px;
  background: #2f3a8f;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.report-box .report-header {
  padding: 10px;
  font-weight: 600;
}
.report-box img {
  width: 100%;
  display: block;
}

.innovation-line {
  border-top: 1px solid #eee;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}
.innovation-line h2 {
  color: #2f3a8f;
  font-weight: 400;
  font-size: 1.4rem;
}

/* Responsive layout */
@media (max-width: 992px) {
  .who-financial-grid {
    grid-template-columns: 1fr;
  }
  .financial-card {
    margin-top: 30px;
  }
}
