.loan-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #cfd8df; /* closer to your image */
  font-family: OpenSans_Bold;
  padding: 20px 30px;
  border-radius: 14px;
}

/* LEFT SIDE */
.loan-left {
  display: flex;
  margin-left:20px;
  align-items: center;
  gap: 15px;
}

.loan-icon {
  background: #004685;
  color: #fff;
  font-size: 22px;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* TEXT */
.loan-text h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
  color: #1a1a1a;
}

/* BUTTON */
.loan-btn {
  display: inline-block;
  background: #1f4e79; /* darker blue like image */
  color: #fff;
  padding: 10px 40px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.loan-btn:hover {
  background: #00345f;
}

/* RIGHT BOX */
.loan-right {
  background: #e9e9e9;
  margin-right: 30px;
  padding: 25px 55px;
  border-radius: 10px;
  text-align: center;
  min-width: 260px;
}

.loan-right h3 {
  font-size: 20px;
  color: #004685;
  font-weight: 900;
  margin-bottom: 5px;
}

.loan-right p {
  font-size: 16px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .loan-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .loan-left {
    justify-content: center;
  }
}