.community-highlights {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(244, 240, 255, 0.8) 100%);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  padding: 3rem 2rem;
  margin: 5rem auto;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 20px 80px rgba(90, 63, 160, 0.08);
  position: relative;
  overflow: hidden;
}

.community-highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #ff5a5f, #7c5fd6, #63c7b2);
}


.community-highlights:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/map_bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
}

.community-highlights h2 {
  font-size: 2.5rem;
  color: #5a3fa0;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  max-width: 900px;
}

.stat-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.8rem 1.5rem;
  min-width: 180px;
  flex: 1;
  box-shadow: 0 8px 30px rgba(90, 63, 160, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(90, 63, 160, 0.15);
}

.stat-value {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #ff5a5f 0%, #7c5fd6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-card {
    width: 80%;
    min-width: unset;
    padding: 1.2rem 1rem;
  }
  
  .stat-value {
    font-size: 2.2rem;
  }
}

/* Features improvements */
.section-title {
  color: #5a3fa0;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.feature-step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff5a5f 0%, #7c5fd6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-step-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.feature-img {
  transition: transform 0.5s;
  box-shadow: 0 10px 30px rgba(90, 63, 160, 0.15);
}

.feature-img:hover {
  transform: scale(1.05);
}

.cta-section {
  background: linear-gradient(135deg, #7c5fd6 0%, #ff5a5f 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 2rem;
  margin: 4rem auto;
  max-width: 1000px;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.cta-btn.huge {
  background: white;
  color: #7c5fd6;
  font-size: 1.5rem;
  padding: 1.5rem 4rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.cta-note {
  margin-top: 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
}
