/* About Section */
#about {
  background-color: #f8f9fa;
}

.about-header h2 {
  position: relative;
  display: inline-block;
}

.divider {
  background: linear-gradient(to right, #28a745, #dc3545);
  height: 3px;
  width: 100px;
  margin: 15px auto;
}

.about-content {
  position: relative;
  overflow: hidden;
}

.mission-box {
  position: relative;
}

.icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Event Cards */
.card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Progress Bars */
.progress {
  border-radius: 4px;
  background-color: #e9ecef;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .about-content {
      margin-bottom: 30px;
  }
  .sticky-top {
      position: static !important;
  }
}