
body {
  background-color: #f4f7fb;
  font-family: "Poppins", sans-serif;
}

.about-section {
  background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.about-section h1 {
  font-weight: 700;
  font-size: 2.8rem;
}

.about-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.7;
}

.content-section {
  padding: 60px 20px;
}

.content-section h2 {
  color: #0056b3;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.content-section p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  padding: 30px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 2.2rem;
  color: #007bff;
  margin-bottom: 15px;
}

.feature-card h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}