.bank-hero {
  background: #0a5c3d;
  color: #fff;
  padding: 60px 20px;
}

.bank-hero-inner {
  max-width: 1000px;
  margin: auto;
}

.bank-hero h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.bank-hero p {
  font-size: 14px;
  max-width: 700px;
  color: #e4f4ee;
}

.bank-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.bank-card {
  background: #f4fdf9;
  border: 1px solid #e3f3ec;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 30px;
}

.bank-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bank-header h3 {
  font-size: 16px;
  font-weight: 500;
}

.bank-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #4b5563;
  margin-right: 14px;
}

.bank-meta svg {
  width: 14px;
  height: 14px;
  stroke: #0b5d4b;
  fill: none;
  stroke-width: 1.8;
}

.bank-icon svg {
  width: 22px;
  height: 22px;
  stroke: #0b5d4b;
  fill: none;
  stroke-width: 1.6;
}

.bank-desc {
  font-size: 13px;
  color: #374151;
  margin: 16px 0;
  line-height: 1.6;
}

.bank-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
}

.bank-points li {
  font-size: 13px;
  padding-left: 20px;
  position: relative;
}

.bank-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0b5d4b;
}

.bank-impact {
  background: #f8fafc;
  padding: 50px 20px;
  text-align: center;
}

.bank-impact h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 30px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.impact-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  padding: 24px;
}

.impact-card svg {
  width: 22px;
  height: 22px;
  stroke: #0b5d4b;
  fill: none;
  stroke-width: 1.8;
  margin-bottom: 10px;
}

.impact-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.impact-card span {
  font-size: 12px;
  color: #6b7280;
}

.bank-approach {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.bank-approach h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.bank-approach p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

.key-principles {
  background: #e9fbf3;
  border-radius: 14px;
  padding: 24px;
  margin-top: 20px;
}

.key-principles h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
}

.key-principles ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
}

.key-principles li {
  font-size: 13px;
  position: relative;
  padding-left: 18px;
}

.key-principles li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0b5d4b;
}

@media (max-width: 768px) {
  .bank-points,
  .impact-grid,
  .key-principles ul {
    grid-template-columns: 1fr;
  }

  .bank-header {
    flex-direction: column;
    gap: 10px;
  }
}
/* ===== BANK PAGE ANIMATIONS ===== */

/* Keyframes */
@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtlePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Bank cards */
.bank-card {
  animation: riseFade 0.9s ease both;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bank-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 93, 75, 0.18);
}

/* Stagger bank cards */
.bank-card:nth-child(1) { animation-delay: 0.1s; }
.bank-card:nth-child(2) { animation-delay: 0.25s; }
.bank-card:nth-child(3) { animation-delay: 0.4s; }

/* Bank header icon */
.bank-icon svg {
  transition: transform 0.35s ease;
}

.bank-card:hover .bank-icon svg {
  animation: subtlePulse 0.8s ease;
}

/* Points hover clarity */
.bank-points li {
  transition: transform 0.25s ease;
}

.bank-points li:hover {
  transform: translateX(6px);
}

/* Impact cards */
.impact-card {
  animation: riseFade 0.9s ease both;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 93, 75, 0.16);
}

.impact-card:hover svg {
  animation: subtlePulse 0.9s ease;
}

/* Impact stagger */
.impact-card:nth-child(1) { animation-delay: 0.1s; }
.impact-card:nth-child(2) { animation-delay: 0.25s; }
.impact-card:nth-child(3) { animation-delay: 0.4s; }

/* Approach section */
.bank-approach {
  animation: riseFade 1s ease both;
}

/* Key principles */
.key-principles li {
  transition: transform 0.25s ease;
}

.key-principles li:hover {
  transform: translateX(6px);
}
.scroll-animate {
  opacity: 0;
  transform: translateY(24px);
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}
.page-center {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
@media (min-width: 1920px) {
  .page-center {
    max-width: 1400px;
  }
}
img {
  max-width: 100%;
  height: auto;
}
.bank-hero h2,
.bank-hero .breadcrumb {
  color: #ffffff;
}
/* ===== REUSABLE FONT UTILITIES ===== */

/* Section main heading */
.font-heading {
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Section sub text / description */
.font-text {
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
