body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #fafafa !important;
  color: #1f2937;
}

h1, h2, h3 {
  font-weight: 600;
  color: #111827;
}

a {
  color: #007BFF;
  text-decoration: none;
}

.hero {
  display: flex;
  min-height: 100vh;
  background: white;
}

.hero-left {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f3f4f6;
}

.hero-right {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.why-section {
  padding: 20px 0;
}

.why-section h2 {
  margin-bottom: 20px;
}

.why-section ul {
  list-style: none;
  padding: 0;
}

.why-section li {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.why-section li::before {
  content: '✔';
  margin-right: 10px;
  color: #34d399;
  font-weight: bold;
}

.steps {
  background: #fafafa;
  padding: 80px 20px;
  text-align: center;
}

.steps h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.step {
  max-width: 400px;
  margin: 0 auto 40px auto;
}

.step-number {
  font-size: 48px;
  color: #007BFF;
  margin-bottom: 20px;
}

.step-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 16px;
  color: #6b7280;
}

.footer-cta {
  background: #007BFF;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.footer-cta button {
  background: white;
  color: #007BFF;
  font-weight: 600;
  padding: 14px 40px;
  border: none;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.footer-cta button:hover {
  background: #f3f4f6;
}

form input,
form select,
form textarea,
form button,
form .form-check,
form .form-group,
.form-check-input,
.form-control {
  margin-bottom: 20px !important;
}

.form-group {
  margin-bottom: 20px !important;
}

.btn-gradient {
  background: linear-gradient(90deg, #6366f1 0%, #60a5fa 100%);
  color: #fff !important;
  border: none;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 16px rgba(80,80,160,0.08);
}
.btn-gradient:hover, .btn-gradient:focus {
  background: linear-gradient(90deg, #60a5fa 0%, #6366f1 100%);
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(80,80,160,0.12);
}
.gradient-text {
  background: linear-gradient(90deg, #6366f1 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.modern-hero {
  background: linear-gradient(120deg,#f8fafc 0%,#e0e7ff 100%) !important;
}
/* Hero image: fixed height 500px on desktop, responsive on mobile */
.modern-hero-img {
  height: 500px !important;
  width: auto !important;
  object-fit: contain;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .modern-hero-img {
    height: 300px !important;
  }
}
/* How It Works images: fixed height 300px */
.howitworks-img {
  height: 300px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Bootstrap margin bottom utility classes for global use */
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.cta-modern-bg {
  background: linear-gradient(90deg, #e0e7ff 0%, #f8fafc 100%);
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(80,80,160,0.06);
}
@media (max-width: 991px) {
  .cta-modern-bg {
    border-radius: 1rem;
  }
}
.footer-modern {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-link {
  color: #222;
  opacity: 0.8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, opacity 0.2s;
}
.footer-link:hover {
  color: #6366f1;
  opacity: 1;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  color: #6366f1;
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
}
.footer-social-link:hover {
  color: #222;
  opacity: 1;
}
.footer-copyright {
  color: #888;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.bank-logos {
  text-align: center;
  margin-top: 40px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}
.logos-row img {
  max-height: 40px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.logos-row img:hover {
  opacity: 1;
}
.testimonials-section {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(80,80,160,0.06);
  padding: 48px 0 32px 0;
  margin-bottom: 48px;
}
.testimonial {
  max-width: 600px;
  margin: 0 auto;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #6366f1;
  border-radius: 50%;
  opacity: 0.8;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  opacity: 1;
}
.trust-badges-section {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 48px;
}
.trust-badge {
  background: #f3f4f6;
  border-radius: 2rem;
  padding: 10px 22px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(80,80,160,0.04);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.8;
  vertical-align: middle;
}
.trust-badge .fa {
  line-height: 1.7 !important;
}
.trust-badge-icon {
  height: 24px;
  width: 24px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 2px;
  line-height: 1.8;
}
.trust-badge span {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
.trust-badge:not(:last-child) {
  margin-right: 12px;
}
@media (max-width: 767px) {
  .trust-badges-section .row {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  .trust-badge {
    margin-bottom: 10px;
  }
}
.section-bg {
  background: #f8fafc;
}
.section-padded {
  padding-top: 50px;
  padding-bottom: 50px;
}
.modern-hero .card, .modern-hero .p-4.rounded-4.shadow-lg {
  box-shadow: 0 0.1rem 2rem rgb(155 155 155 / 18%) !important;
}
.about-section .card,
.about-section .card.shadow-lg,
.about-section .card.shadow-lg.border-0,
.about-section .card.shadow-lg.border-0.animate__animated.animate__fadeInUp,
.about-section .card.shadow.h-100.animate__animated.animate__fadeInLeft,
.about-section .card.shadow.h-100.animate__animated.animate__fadeInRight {
  box-shadow: 0 0.1rem 2rem rgb(155 155 155 / 18%) !important;
}
.btn-bank-connect {
  background: #fff !important;
  color: #222 !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 1px 8px rgba(80,80,160,0.04);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-bank-connect:hover, .btn-bank-connect:focus {
  background: #f3f4f6 !important;
  color: #111 !important;
  box-shadow: 0 4px 16px rgba(80,80,160,0.08);
}
.btn-bank-disconnect {
  background: #e5e7eb !important;
  color: #444 !important;
  border: 1px solid #d1d5db !important;
  box-shadow: 0 1px 8px rgba(80,80,160,0.04);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-bank-disconnect:hover, .btn-bank-disconnect:focus {
  background: #d1d5db !important;
  color: #222 !important;
  box-shadow: 0 4px 16px rgba(80,80,160,0.08);
}
