/* === COMPLETE LMS LIST SECTION CSS === */
.lms-list-section {
  background: #f8fafc;
  padding: 5rem 0;
  border-top: 1px solid rgba(0,31,63,0.1);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #001f3f;
  margin-bottom: 0.8rem;
  position: relative;
}

.highlight {
  color: #008c98;
}

.title-gradient-bar {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #008c98, #4CAF50);
  margin: 0 auto 1.5rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #5a6a85;
}

.lms-features {
  margin: 3rem 0;
}

.lms-feature {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,31,63,0.1);
  align-items: flex-start;
}

.feature-visual {
  flex: 0 0 80px;
}

.visual-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0,140,152,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.visual-circle svg {
  width: 40px;
  height: 40px;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.4rem;
  color: #001f3f;
  margin-bottom: 1rem;
  position: relative;
}

.feature-content h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #008c98, #4CAF50);
  margin: 1rem 0;
}

.feature-content p {
  color: #5a6a85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #5a6a85;
}

.feature-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: #008c98;
  border-radius: 50%;
}

.lms-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #008c98;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #5a6a85;
  font-size: 0.95rem;
}

/* Interactive Elements */
.lms-feature:hover .visual-circle {
  background: rgba(0,140,152,0.2);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .lms-feature {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .feature-visual {
    margin: 0 auto;
  }
  
  .stat-item {
    min-width: 100px;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .lms-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .title-gradient-bar {
    width: 80px;
  }
}