/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: #f8fafc;
  line-height: 1.6;
  color: #1a202c;
  font-size: 16px;
}

.loan-app {
  max-width: 400px;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Professional Header Navigation (Desktop Only) */
.top-nav {
  display: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.top-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

.logo-section {
  display: flex;
  align-items: center;
  color: white;
}

.logo-icon {
  font-size: 28px;
  margin-right: 12px;
  color: #ffd700;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #ffd700;
  border-radius: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: #ffd700;
}

.nav-cta {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a202c;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Alert Banner */
.alert-banner {
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: white;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.alert-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.alert-banner i {
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Warning Notice */
.warning-notice {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 12px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  border-left: 4px solid #f59e0b;
}

.warning-notice i {
  margin-right: 8px;
  color: #f59e0b;
  font-size: 16px;
}

/* Service Cards */
.service-cards {
  padding: 20px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.service-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-card--primary {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  color: white;
  grid-row: span 2;
  position: relative;
}

.service-card--primary::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.service-card--secondary {
  background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%);
  color: white;
}

.service-card--info {
  background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
  color: white;
}

.service-card__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.service-card__content p {
  font-size: 13px;
  opacity: 0.95;
  line-height: 1.4;
}

.service-card__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 28px;
  opacity: 0.7;
}

.service-card__icon img {
  max-width: 90px;
}

/* Success Stats */
.success-stats {
  margin: 0 16px 20px 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 12px;
  color: #92400e;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border: 1px solid #fbbf24;
  position: relative;
  overflow: hidden;
}

.success-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}

.success-stats i {
  margin-right: 12px;
  font-size: 18px;
  color: #f59e0b;
}

/* Loan Section */
.loan-section {
  margin: 0 16px 28px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 32px 24px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.loan-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.loan-section h2 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.amount-display {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
}

.slider-container {
  margin-bottom: 24px;
  position: relative;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  -webkit-appearance: none;
  position: relative;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.loan-info .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 500;
}

.loan-info .info-item .value {
  font-weight: 700;
  font-size: 19px;
}

.loan-details {
  display: flex;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
}

.detail-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.detail-item .detail-label {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-item .detail-value {
  font-weight: 700;
  font-size: 16px;
}

/* Apply Button */
.apply-button-container {
  margin: 0 16px 28px 16px;
}

.apply-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.apply-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.apply-btn:hover::before {
  left: 100%;
}

.apply-btn:active {
  transform: translateY(-1px);
}

/* Partnership Info */
.partnership-info {
  text-align: center;
  color: #718096;
  font-size: 14px;
  margin-bottom: 28px;
  padding: 0 16px;
  line-height: 1.5;
  font-weight: 500;
}

/* Features Section */
.features-section {
  display: flex;
  justify-content: space-around;
  margin: 0 16px 32px 16px;
  text-align: center;
  gap: 8px;
}

.feature-item {
  flex: 1;
  padding: 20px 12px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f7fafc;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-badge {
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: white;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
}

.feature-text {
  font-size: 13px;
  color: #2d3748;
  line-height: 1.5;
  font-weight: 500;
}

.feature-text strong {
  font-weight: 700;
  color: #1a202c;
}

/* Additional Services */
.additional-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 16px 36px 16px;
}

.service-feature {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 24px 16px;
  transition: all 0.3s ease;
  border: 1px solid #f7fafc;
  position: relative;
  overflow: hidden;
}

.service-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.service-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-feature__icon {
  font-size: 32px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-feature__badge {
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: white;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: inline-block;
  font-weight: 600;
}

.service-feature__text {
  font-size: 13px;
  color: #2d3748;
  line-height: 1.5;
  font-weight: 500;
}

/* Loan Types */
.loan-types {
  margin: 0 16px 36px 16px;
}

.loan-types h3 {
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}

.loan-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.loan-type {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 24px 16px;
  transition: all 0.3s ease;
  border: 1px solid #f7fafc;
  position: relative;
  overflow: hidden;
}

.loan-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ec4899, #be185d);
}

.loan-type:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.loan-type__icon {
  font-size: 32px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ec4899, #be185d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loan-type__text {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
}

/* Certifications */
.certifications {
  margin: 0 16px 36px 16px;
}

.certifications h3 {
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cert-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 20px 16px;
  border: 1px solid #f7fafc;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cert-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #059669);
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  font-size: 28px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cert-text {
  font-size: 12px;
  line-height: 1.4;
  color: #2d3748;
  font-weight: 500;
}

.cert-text strong {
  font-weight: 700;
  color: #1a202c;
}

/* Bottom Navigation (Mobile) */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  background: white;
  border-top: 1px solid #e2e8f0;
  display: flex;
  padding: 12px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.nav-item {
  flex: 1;
  text-align: center;
  padding: 8px;
  color: #a0aec0;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  margin: 0 4px;
}

.nav-item.active {
  color: #667eea;
  background: #edf2f7;
}

.nav-item:hover {
  color: #667eea;
}

.nav-item i {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.nav-item span {
  font-size: 10px;
  font-weight: 500;
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
  .loan-app {
    max-width: 768px;
    padding: 24px;
    padding-bottom: 100px;
    border-radius: 24px;
    margin: 20px auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }

  .alert-banner {
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .warning-notice {
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .service-cards {
    padding: 28px 24px;
    gap: 20px;
  }

  .service-card {
    min-height: 140px;
    padding: 28px 24px;
  }

  .service-card__content h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .service-card__content p {
    font-size: 14px;
  }

  .loan-section {
    margin: 0 24px 32px 24px;
    padding: 36px 32px;
  }

  .amount-display {
    font-size: 42px;
  }

  .apply-btn {
    padding: 20px;
    font-size: 20px;
  }

  .features-section {
    margin: 0 24px 36px 24px;
    gap: 16px;
  }

  .additional-services,
  .loan-types,
  .certifications {
    margin: 40px 40px;
  }

  .certifications h3 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .cert-item {
    padding: 32px 28px;
  }

  .cert-icon {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .cert-text {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
  .main-container {
    margin: 0 60px 60px 60px;
  }

  .service-cards {
    padding: 60px;
    gap: 32px;
  }

  .service-card {
    min-height: 180px;
    padding: 40px 36px;
  }

  .service-card__content h3 {
    font-size: 24px;
  }

  .service-card__content p {
    font-size: 18px;
  }

  .main-content {
    gap: 60px;
    margin: 0 60px;
  }

  .loan-section {
    padding: 60px 50px;
  }

  .amount-display {
    font-size: 56px;
  }

  .apply-section {
    padding: 60px 50px 60px 0;
  }

  .apply-btn {
    padding: 28px;
    font-size: 24px;
  }

  .additional-services,
  .loan-types,
  .certifications {
    margin: 60px 60px;
  }

  .loan-types h3,
  .certifications h3 {
    font-size: 32px;
    margin-bottom: 50px;
  }
}

/* Small Mobile - 480px and down */
@media (max-width: 480px) {
  .loan-app {
    max-width: 100%;
    padding-bottom: 80px;
    margin: 0;
    border-radius: 0;
  }

  .service-cards {
    padding: 16px;
    gap: 12px;
  }

  .service-card {
    min-height: 100px;
    padding: 20px 16px;
  }

  .service-card__content h3 {
    font-size: 16px;
  }

  .service-card__content p {
    font-size: 12px;
  }

  .loan-section {
    margin: 0 12px 20px 12px;
    padding: 24px 20px;
  }

  .amount-display {
    font-size: 28px;
  }

  .apply-button-container {
    margin: 0 12px 20px 12px;
  }

  .features-section {
    margin: 0 12px 24px 12px;
    gap: 8px;
  }

  .feature-item {
    padding: 16px 8px;
  }

  .additional-services {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 12px 28px 12px;
  }

  .service-feature {
    padding: 20px 12px;
  }

  .loan-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .loan-types {
    margin: 0 12px 28px 12px;
  }

  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .certifications {
    margin: 0 12px 28px 12px;
  }
}

/* Professional animations and micro-interactions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.feature-item {
  animation: slideInRight 0.6s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.apply-btn:focus,
.nav-link:focus,
.nav-cta:focus {
  outline: 3px solid rgba(102, 126, 234, 0.5);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .top-nav,
  .bottom-nav,
  .alert-banner {
    display: none;
  }

  .loan-app {
    box-shadow: none;
    background: white;
  }

  .service-card,
  .loan-section {
    break-inside: avoid;
  }
} 0 24px 40px 24px;
    gap: 20px;
  }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
  body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 0;
  }

  /* Show top navigation */
  .top-nav {
    display: block;
  }

  /* Hide bottom navigation */
  .bottom-nav {
    display: none;
  }

  .loan-app {
    max-width: 1400px;
    padding: 0;
    border-radius: 0;
    margin: 0 auto;
    box-shadow: none;
    background: transparent;
    padding-bottom: 60px;
  }

  /* Main container */
  .main-container {
    background: white;
    margin: 0 40px 40px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .alert-banner {
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 0;
    margin-bottom: 0;
  }

  .warning-notice {
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 0;
    margin-bottom: 0;
  }

  /* Service Cards - 4 column layout */
  .service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 24px;
    padding: 40px;
  }

  .service-card--primary {
    grid-row: span 1;
  }

  .service-card {
    min-height: 160px;
    padding: 32px 28px;
  }

  .service-card__content h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .service-card__content p {
    font-size: 16px;
  }

  /* Two column layout for main content */
  .main-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin: 0 40px;
  }

  .loan-section {
    margin: 0;
    padding: 48px 40px;
  }

  .loan-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .amount-display {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .loan-info .info-item {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .detail-item .detail-value {
    font-size: 20px;
  }

  /* Apply section */
  .apply-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 48px 40px 48px 0;
  }

  .apply-button-container {
    margin: 0 0 32px 0;
  }

  .apply-btn {
    padding: 24px;
    font-size: 22px;
  }

  .partnership-info {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0;
    text-align: left;
  }

  .features-section {
    margin: 0;
    justify-content: flex-start;
    gap: 32px;
    text-align: left;
  }

  .feature-item {
    flex: none;
    padding: 24px;
    min-width: 140px;
  }

  .feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .feature-text {
    font-size: 14px;
  }

  /* Grid layouts */
  .additional-services {
    grid-template-columns: repeat(6, 1fr);
    margin: 40px 40px;
    gap: 24px;
  }

  .service-feature {
    padding: 32px 24px;
  }

  .loan-types {
    margin: 40px 40px;
  }

  .loan-types h3 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .loan-types-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }

  .loan-type {
    padding: 32px 24px;
  }

  .loan-type__icon {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .loan-type__text {
    font-size: 16px;
  }

  .certifications {
    margin: 0 40px 40px 40px;
  }

  .certifications h3 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .certifications-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }

  .certification {
    padding: 32px 24px;
  }

  .certification__icon {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .certification__text {
    font-size: 16px;
  }
}/* Reset some default styles */
