/* Start custom CSS for html, class: .elementor-element-bacabdf */body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #2c3e50;
}

h1, h2 {
  color: #2c3e50;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
}

/* Mission & Vision */
.about-mission {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #ffffff;
  text-align: center;
}

.mission-box {
  flex: 1 1 300px;
  padding: 20px;
  margin: 10px;
  background: #f1f5f9;
  border-radius: 10px;
}

/* Stats */
.about-stats {
  background: #e2e8f0;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  font-size: 1.2rem;
}

.stat-item strong {
  font-size: 2rem;
  color: #3b82f6;
}

/* Benefits */
.about-benefits {
  background: #ffffff;
  text-align: center;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.benefit-card {
  width: 200px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}

.benefit-card i {
  font-size: 2rem;
  color: #0ea5e9;
  margin-bottom: 10px;
}

.benefit-card:hover {
  background: #e0f2fe;
  transform: translateY(-4px);
}

/* CTA */
.about-cta {
  background: #3b82f6;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #facc15;
  color: #1f2937;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fde047;
}/* End custom CSS */