section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  color: #777;
  font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}
