/* About Section */
.about-section {
  background: linear-gradient(135deg, #ffffff, #f3f6fb);
  padding: 70px 20px;
  text-align: center;
  position: relative;
}
.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.about-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0d6efd;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}
.about-section p {
  max-width: 800px;
  margin: 15px auto;
  line-height: 1.7;
  color: #444;
}
.btn-learn-more {
  margin-top: 25px;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  color: white;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.btn-learn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}