/* ================= ENHANCED ABOUT SECTION ================= */
.about-content {
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-content p {
  text-align: justify;
  line-height: 1.6;
}

.about-cards-container {
  padding-left: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 1rem;
}

.feature-text h6 {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.feature-text small {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  margin: 0;
  line-height: 1;
}

.stat-label {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .about-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .about-cards-container {
    padding-left: 0;
  }
}
