
.hero-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  padding: 50px 0;
 position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.feature-box {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.highlight-stat {
  background: #5a93da; /*linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.cta-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
  text-align: center;
  padding: 35px 0;
}
.cta-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  box-sizing: border-box;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}
.comparison-card {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
}
.comparison-card.featured {
  border-color: #5485c2;
  background: linear-gradient(135deg, rgba(84, 133, 194, 0.1) 0%, rgba(84, 133, 194, 0.1) 100%);
}
.comparison-card.heloc-featured {
  border-color: #1cb22a;
  background: linear-gradient(135deg, rgba(28, 78, 142, 0.1) 0%, rgba(28, 78, 142, 0.1) 100%);
}
.text-primary-lp {
   color: #4786d5;
 }

@media (max-width: 768px) {
  :root {
    --bs-gutter-x: 0 !important; 
  }
  .container {
    --bs-container-padding-x: 0 !important; 
    padding-left: 0.80rem !important;
    padding-right: 0.80rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }
  .row {
    margin-left: 0 !important; 
    margin-right: 0 !important;
  }
  .col, .col-12, .col-sm-12, .col-md-12, [class*="col-"] {
    padding-left: 0 !important; 
    padding-right: 0 !important;
  }
  .p-4 {
    padding: 1.25rem !important;
  }
  .hero-section {
    padding: 40px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  h2 {   
    font-size: 1.625rem;
  }
  .feature-box {
    margin-bottom: 20px;
  }
  .comparison-card {
    margin-bottom: 20px;
  }
  .cta-section {
    padding: 40px 0;
  }
  .py-5 {
    padding: 30px 0;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 30px 0;
  }
  .hero-section h1 {
    font-size: 1.75rem;
    text-align: center;
    margin-top: 25px;
  }
  .feature-box {
    padding: 20px;
  }
  .comparison-card {
    padding: 15px;
  }
  .highlight-stat {
    padding: 20px;
  }
  .cta-section {
    padding: 30px 0;
  }
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}