body {
  font-family: "Inter", sans-serif;
  color: #1b2a4e;
}

/* Hero Section */
.about-hero {
  min-height: 250px;
  position: relative;
  background: linear-gradient(90deg, #0f1a34cc 7.71%, rgba(0, 0, 0, 0) 123.47%),
    url("./images/about-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 70, 0.6);
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero h1 {
  font-weight: 700;
  font-size: 2.5rem;
}
.about-hero .breadcrumb a {
  color: #cce3ff;
  text-decoration: none;
}
.about-hero .breadcrumb-item.active {
  color: #fff;
}

/* Redefining Financial Section */
.redefine-financial h2 {
  color: #1b2a4e;
}
.bg-light-green {
  background-color: #d8f0d4 !important;
  color: #2a7b2a !important;
  font-weight: 600;
}

/* Trusted Partners Section */
.trusted-partners .info-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}
.trusted-partners .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .image-stack .overlay-img {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
  .about-hero {
    min-height: 200px;
  }
}
