body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fb;
}

/* HERO SECTION */
.hero-section {
  height: 90vh;
  background: linear-gradient(135deg, #1e90ff, #00c9a7);
  color: white;
  position: relative;
}

.hero-section h1 {
  font-size: 2.5rem;
}

.hero-section .btn {
  font-weight: 600;
}

/* FLOATING LOAN CARD */
.loan-card {
  background: white;
  color: #333;
  padding: 20px;
  border-radius: 15px;
  width: 300px;
  margin: 30px auto 0;
}

.loan-card p {
  font-size: 0.9rem;
  color: #777;
}

/* FEATURE CARDS */
.feature-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  font-size: 1.5rem;
}

.feature-card h5 {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* TRUST SECTION */
.trust-section {
  background: #ffffff;
}

/* BADGES */
.badge-pill {
  background: #eef2f7;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}