*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#ffffff;
}

/* CONTAINER */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* =========================
   🔥 PRO NAVBAR
========================= */

/* HEADER */
header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

/* NAV CONTAINER */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* LOGO */
.logo {
  height: 20px;
}

/* RIGHT SIDE */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto; /* 🔥 pushes links to right */
}

/* LINKS */
.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #3434ff;
}

/* LOGIN BUTTON */
.login {
  background: #3434ff;
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 6px;
  border: 1px solid #3434ff;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 8px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* DROPDOWN LINKS */
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #000;
}

.dropdown-menu a:hover {
  background: #f5f7fa;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:70px;
    right:5%;
    background:#fff;
    flex-direction:column;
    width:220px;
    padding:20px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:0.3s;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .dropdown-menu{
    position:static;
    box-shadow:none;
    padding-left:10px;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
  }

  .dropdown.active .dropdown-menu{
    display:block;
  }
}

/* Global */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* HERO SECTION */
.loan-hero {
  background-color: #2f3147;
  padding: 80px 20px;
}

.loan-hero .container {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-title {
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 800;
  color: #2f3147;
}

.hero-text {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  background: #2a66f0;
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
}

.hero-btn:hover {
  background: #1e4ed8;
}

/* FEATURES SECTION */
.loan-features {
  background: #f3f3f5;
  text-align: center;
  padding: 70px 20px;
}

.loan-features .container {
  max-width: 1100px;
  margin: 0 auto;
}

.features-subtitle {
  font-size: 16px;
  color: #3a3a4a;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-title {
  font-size: 44px;
  color: #2a66f0;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.features-text {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 14px;
  color: #6a6a75;
}

/* GRID */
.features-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature {
  width: 260px;
}

.icon-circle {
  width: 130px;
  height: 130px;
  background: #e6e6ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle img {
  width: 100px;
  height: auto;
}

.feature h3 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #2e2e3a;
}

.feature p {
  font-size: 13px;
  color: #6a6a75;
  line-height: 1.5;
}

/* BUTTON */
.features-btn {
  display: inline-block;
  background: #2a66f0;
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
}

.features-btn:hover {
  background: #1e4ed8;
}

.loan-info {
  background:white;
  padding: 120px 20px 200px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
}

/* Top gray box */
.loan-box {
  background: #dedee3;
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 60px 140px;
  text-align: left;
}

.loan-box h5 {
  font-size: 18px;
  letter-spacing: 1px;
  color: #3a3d4f;
  margin-bottom: 10px;
}

.loan-box h2 {
  font-size: 44px;
  font-weight: 800;
  color: #2563eb;
  line-height: 1.1;
  margin-bottom: 20px;
}

.loan-box p {
  font-size: 15px;
  color: #6b6f80;
  max-width: 400px;
}

/* Stats Card */
.loan-stats {
  max-width: 900px;
  margin: -80px auto 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Each row */
.stat {
  position: relative;
  padding: 30px 40px;
  text-align: center;
  overflow: hidden;
}

.stat .content small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.stat h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat span {
  font-size: 14px;
  font-weight: 600;
}

/* Colors */
.stat-blue {
  background: #2563eb;
  color: #fff;
}

.stat-dark {
  background: #2e3147;
  color: #fff;
}

.stat-gray {
  background: #5a5c66;
  color: #fff;
}

/* 🔥 Angled stripes */
.stripe {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 18px,
    rgba(0,0,0,0.3) 18px,
    rgba(0,0,0,0.3) 28px
  );
}

.stripe.left {
  left: 0;
}

.stripe.right {
  right: 0;
  transform: scaleX(-1);
}

/* Blue accent stripes */
.stat-blue .stripe {
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 18px,
    rgba(0,0,0,0.25) 18px,
    rgba(0,0,0,0.25) 28px
  );
}

/* Darker variant */
.stripe.dark {
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 18px,
    rgba(0,0,0,0.5) 18px,
    rgba(0,0,0,0.5) 28px
  );
}



.rates-section {
    
  background: white;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.title {
  font-size: 42px;
  font-weight: 500;
  color: #111;
  margin: 0 0 40px;
}

.state {
  color: #2563eb;
  border-bottom: 3px solid #2563eb;
  padding-bottom: 2px;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon {
  font-size: 18px;
  color: #000;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin-bottom: 40px;
}

.label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.value {
  font-size: 16px;
  color: #2563eb;
  font-weight: 600;
}

.divider {
  height: 1px;
  background: #ccc;
  margin: 30px 0;
}

.fine-print {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

.fine-print p {
  margin-bottom: 10px;
}

.steps-section {
  background: #2f3146; /* deep navy */
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.heading {
  margin-bottom: 10px;
}

.heading .small {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.heading .highlight {
  font-size: 36px;
  font-weight: 800;
  color: #2f6fff;
}

.subtext {
  font-size: 13px;
  color: #cfcfd6;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.step {
  max-width: 260px;
  margin: 0 auto;
}

.circle {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.circle img {
  width: 100px;
  height: auto;
}

.step h3 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.step p {
  font-size: 12px;
  color: #d1d1d8;
  line-height: 1.6;
}


.testimonials {
  background: repeating-linear-gradient(
    -45deg,
    #f2f2f2,
    #f2f2f2 20px,
    #e9e9e9 20px,
    #e9e9e9 40px
  );
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 40px;
}

.content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* LEFT SIDE */
.summary {
  width: 250px;
}

.summary h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.stars {
  background: #00b67a;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.reviews {
  font-size: 13px;
}

.reviews a {
  color: #000;
  text-decoration: underline;
}

.trustpilot {
  margin-top: 10px;
  color: #00b67a;
  font-weight: bold;
}

/* RIGHT SIDE */
.reviews-wrapper {
  display: flex;
  gap: 30px;
  flex: 1;
}

.review {
  max-width: 260px;
}

.review-stars {
  color: #00b67a;
  font-size: 14px;
  margin-bottom: 8px;
}

.invited {
  color: #666;
  font-size: 12px;
  margin-left: 5px;
}

.review h4 {
  font-size: 14px;
  margin: 0 0 6px;
}

.review p {
  font-size: 13px;
  color: #555;
  margin: 0 0 6px;
}

.author {
  font-size: 12px;
  color: #777;
}

/* FOOTER NOTE */
.footer-note {
  margin-top: 30px;
  font-size: 13px;
  color: #444;
}

/* SECTION: USE CASES */
.loan-uses {
  background: #f3f3f5;
  text-align: center;
  padding: 70px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.uses-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #3a3a4a;
  margin-bottom: 5px;
}

.uses-title {
  font-size: 44px;
  color: #2a66f0;
  font-weight: 800;
  margin-bottom: 15px;
}

.uses-text {
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 14px;
  color: #6a6a75;
  line-height: 1.6;
}

/* GRID */
.uses-grid {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.use-item {
  width: 260px;
}

.icon-circle {
  width: 140px;
  height: 140px;
  background: #e6e6ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle img {
  width: 100px;
}

.use-item h3 {
  font-size: 14px;
  font-weight: 800;
  color: #2e2e3a;
  margin-bottom: 10px;
}

.use-item p {
  font-size: 13px;
  color: #6a6a75;
  line-height: 1.6;
}

/* CTA STRIP */
.loan-cta {
  background: linear-gradient(90deg, #1f5be3 0%, #2a66f0 100%);
  color: #fff;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 50px 20px;
}

.cta-text {
  flex: 1;
}

.cta-text h3 {
  font-size: 20px;
  font-weight: 800;
  max-width: 400px;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cta-btn:hover {
  background: #fff;
  color: #2a66f0;
}

/* IMAGE SIDE */
.cta-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cta-image img {
  max-height: 250px;
  object-fit: contain;
}

.finance-disclaimer {
  background: #f5f5f5;
  padding: 60px 20px;
}

.disclaimer-container {
  max-width: 1100px;
  margin: 0 auto;
  color: #6b7280;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.disclaimer-container p {
  margin-bottom: 16px;
}

.disclaimer-container a {
  color: #2563eb;
  text-decoration: underline;
}

.disclaimer-container sup {
  font-size: 10px;
  vertical-align: super;
}

.disclaimer-container .bold {
  font-weight: 700;
  text-transform: uppercase;
  color: #4b5563;
  margin-top: 20px;
}

.disclaimer-logos {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.disclaimer-logos img {
  height: 40px;
  object-fit: contain;
}

.finance-footer {
  background: #2f3147; /* dark navy */
  padding: 60px 20px;
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 24px;
}

/* Columns layout */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* Column */
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* =========================
   GLOBAL SMOOTHNESS
========================= */

html{
  scroll-behavior:smooth;
}

*{
  transition:
  background-color .3s ease,
  color .3s ease,
  border .3s ease,
  transform .3s ease,
  box-shadow .3s ease;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeLeft{
  from{
    opacity:0;
    transform:translateX(-50px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes fadeRight{
  from{
    opacity:0;
    transform:translateX(50px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes zoomIn{
  from{
    opacity:0;
    transform:scale(.8);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

@keyframes float{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-8px);
  }
  100%{
    transform:translateY(0px);
  }
}

@keyframes pulse{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.04);
  }
  100%{
    transform:scale(1);
  }
}

/* =========================
   HERO ANIMATION
========================= */

.loan-hero{
  animation:fadeUp 1s ease;
}

.hero-subtitle{
  animation:fadeLeft 1s ease;
}

.hero-title{
  animation:fadeUp 1s ease;
}

.hero-text{
  animation:fadeRight 1.2s ease;
}

.hero-btn{
  animation:zoomIn 1.3s ease;
}

/* =========================
   FEATURE CARDS
========================= */

.feature{
  animation:fadeUp 1s ease;
}

.feature:nth-child(2){
  animation-delay:.2s;
}

.feature:nth-child(3){
  animation-delay:.4s;
}

.feature:hover{
  transform:translateY(-10px);
}

.icon-circle{
  animation:float 4s ease-in-out infinite;
}

.icon-circle:hover{
  transform:scale(1.05);
}

/* =========================
   STATS
========================= */

.loan-stats{
  animation:fadeUp 1.2s ease;
}

.stat:hover{
  transform:scale(1.02);
}

/* =========================
   RATE SECTION
========================= */

.info-item{
  animation:fadeUp 1s ease;
}

.info-item:hover{
  transform:translateY(-5px);
}

/* =========================
   STEPS
========================= */

.step{
  animation:fadeUp 1s ease;
}

.step:nth-child(2){
  animation-delay:.2s;
}

.step:nth-child(3){
  animation-delay:.4s;
}

.circle{
  animation:float 5s ease-in-out infinite;
}

.step:hover{
  transform:translateY(-10px);
}

/* =========================
   TESTIMONIALS
========================= */

.review{
  animation:fadeUp 1s ease;
}

.review:hover{
  transform:translateY(-8px);
}

/* =========================
   USE CASES
========================= */

.use-item{
  animation:fadeUp 1s ease;
}

.use-item:nth-child(2){
  animation-delay:.2s;
}

.use-item:nth-child(3){
  animation-delay:.4s;
}

.use-item:hover{
  transform:translateY(-10px);
}

/* =========================
   CTA
========================= */

.cta-text{
  animation:fadeLeft 1s ease;
}

.cta-image{
  animation:fadeRight 1s ease;
}

.cta-image img{
  animation:float 5s ease-in-out infinite;
}

/* =========================
   BUTTONS
========================= */

.hero-btn,
.features-btn,
.cta-btn,
.login{
  position:relative;
  overflow:hidden;
}

.hero-btn:hover,
.features-btn:hover,
.cta-btn:hover,
.login:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.hero-btn:active,
.features-btn:active,
.cta-btn:active{
  transform:scale(.97);
}

/* =========================
   NAVBAR
========================= */

header{
  animation:fadeDown .8s ease;
}

@keyframes fadeDown{
  from{
    opacity:0;
    transform:translateY(-30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.nav-links a{
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:2px;
  background:#2563eb;
  transition:.3s ease;
}

.nav-links a:hover::after{
  width:100%;
}

/* =========================
   FOOTER
========================= */

.footer-col{
  animation:fadeUp 1s ease;
}

.footer-col a:hover{
  padding-left:6px;
}

/* =========================
   SCROLL REVEAL
========================= */

.feature,
.step,
.use-item,
.review,
.info-item,
.footer-col,
.loan-box,
.stat{
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1s ease forwards;
}

/* =========================
   STAGGER EFFECTS
========================= */

.feature:nth-child(1),
.step:nth-child(1),
.use-item:nth-child(1),
.review:nth-child(1){
  animation-delay:.1s;
}

.feature:nth-child(2),
.step:nth-child(2),
.use-item:nth-child(2),
.review:nth-child(2){
  animation-delay:.3s;
}

.feature:nth-child(3),
.step:nth-child(3),
.use-item:nth-child(3),
.review:nth-child(3){
  animation-delay:.5s;
}

/* =========================
   MOBILE PERFORMANCE
========================= */

@media(max-width:768px){

  *{
    animation-duration:.8s !important;
  }

  .feature:hover,
  .step:hover,
  .use-item:hover,
  .review:hover{
    transform:none;
  }

} 

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 992px) {

  .features-grid,
  .steps-grid,
  .uses-grid,
  .reviews-wrapper,
  .footer-columns,
  .info-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .content,
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .summary {
    width: 100%;
  }

  .review {
    max-width: 100%;
  }

  .loan-box {
    padding: 40px 30px 120px;
  }

  .hero-title,
  .features-title,
  .uses-title,
  .title {
    font-size: 42px;
    line-height: 1.1;
  }

  .loan-stats {
    margin-top: -60px;
  }

  .stat h3 {
    font-size: 28px;
  }
}

/* MOBILE NAV */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    font-size: 15px;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background: #f7f7f7;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 10px;
    display: none;
    padding: 10px 0;

    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 16px;
  }

  .login {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-text {
    font-size: 14px;
  }

  .loan-box h2,
  .features-title,
  .uses-title {
    font-size: 34px;
  }

  .heading .highlight {
    font-size: 30px;
  }

  .cta-image img {
    width: 100%;
    max-width: 320px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .disclaimer-logos {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .hero-title {
    font-size: 38px;
  }

  .features-title,
  .uses-title,
  .loan-box h2,
  .title {
    font-size: 28px;
  }

  .hero-btn,
  .features-btn,
  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .loan-box {
    padding: 30px 20px 100px;
  }

  .stat {
    padding: 25px 20px;
  }

  .stat h3 {
    font-size: 24px;
  }

  .circle,
  .icon-circle {
    width: 110px;
    height: 110px;
  }

  .circle img,
  .icon-circle img {
    width: 75px;
  }
}