.loan-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #00796b;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  max-width: 1200px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
}

.loan-cards {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.loan-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 18%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
}

.loan-card img {
  max-width: 60px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.loan-card p {
  font-size: 18px;
  font-weight: bold;
  color: #00796b;
}

.loan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.loan-card:hover img {
  transform: scale(1.1);
}

/* Simplified CTA */
.cta {
  margin-top: 30px;
}

.cta p {
  font-size: 18px;
  font-weight: bold;
  color: #00796b;
  background-color: #e0f7fa;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 5px;
  transition: color 0.3s ease;
}

.cta p:hover {
  color: #004d40;
}

@media (max-width: 768px) {
  .loan-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .loan-card {
    width: 45%;
    margin-bottom: 20px;
  }

  .cta {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .loan-card {
    width: 80%;
  }

  .cta {
    width: 90%;
  }
}

.how-it-works {
  text-align: center;
  padding: 40px 20px;
  margin: 30px auto;
  max-width: 1200px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 18%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step img {
  max-width: 60px;
  margin-bottom: 15px;
}

.step p {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.step .description {
  font-size: 14px;
  color: #555;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.extra-info {
  margin-top: 40px;
  text-align: left;
  font-size: 18px;
  color: #333;
}

.extra-info ul {
  list-style: none;
  margin-top: 20px;
}

.extra-info li {
  font-size: 16px;
  margin-bottom: 10px;
}

.extra-info li strong {
  color: #4285f4;
  font-weight: bold;
}

@media (max-width: 768px) {
  .steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step {
    width: 45%;
    margin-bottom: 20px;
  }

  .extra-info {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .steps {
    justify-content: center;
  }

  .step {
    width: 90%;
  }

  .extra-info {
    width: 90%;
  }
}

.funfact-one {
  position: relative;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.funfact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.container {
  position: relative;
  z-index: 2;
}

.urgent-text {
  font-size: 32px;
  font-weight: bold;
  color: #FF6347; /* Tomato color for urgency */
  margin-bottom: 20px;
  display: inline-block;
}

.urgency-text {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6;
}

.apply-now-button {
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  background-color: #00c1d4;
  color: #fff;
  border: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.apply-now-button:hover {
  background-color: #028b91;
  cursor: pointer;
}

@media (max-width: 768px) {
  .urgent-text {
    font-size: 24px;
  }

  .urgency-text {
    font-size: 18px;
  }

  .apply-now-button {
    font-size: 16px;
    padding: 10px 25px;
  }
}
.additional-benefits {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 30px auto;
  text-align: center;
}

.benefits-title {
  font-size: 28px;
  font-weight: bold;
  color: #4285f4; /* Blue color for the title */
  margin-bottom: 30px;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 30px;
}

.benefit-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  font-size: 40px;
  color: #00c1d4; /* Light cyan color for the icons */
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .benefit-item {
    width: 45%; /* Stacks benefits in two columns on smaller screens */
  }
}

@media (max-width: 480px) {
  .benefit-item {
    width: 90%; /* Stacks benefits in a single column on mobile devices */
  }
}

.whats-youre-getting {
  padding: 40px 20px;
  margin: 30px auto;
  max-width: 1200px;
 
  border-radius: 10px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #fff; /* Blue color for the title */
  margin-bottom: 30px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
}

.benefit-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  font-size: 40px;
  color: #00c1d4; /* Light cyan color for the icons */
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.cta {
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.cta-text {
  font-size: 18px;
  color: #00c1d4; /* Cyan color to attract attention */
  font-weight: bold;
}

@media (max-width: 768px) {
  .benefit-item {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .benefit-item {
    width: 90%;
  }
}