/* Enrollment Process - Simple Vertical Sections */
.enrollment-process {
  padding: 60px 20px;
}

.enrollment-sections {
  max-width: 900px;
  margin: 0 auto;
}

.department-section {
  margin-bottom: 60px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.department-section:last-child {
  margin-bottom: 0;
}

.department-section h3 {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: white;
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  padding: 25px 30px;
  text-align: left;
}

.steps-list {
  padding: 30px;
  list-style: none;
}

.step-item {
  padding: 20px;
  margin-bottom: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--accent-green);
  transition: var(--transition);
}

.step-item:hover {
  background: var(--bg-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  margin-right: 12px;
  flex-shrink: 0;
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.step-title {
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.step-content p {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.step-content p:last-child {
  margin-bottom: 0;
}

.conditional-note {
  background-color: var(--accent-green);
  padding: 12px 16px;
  border-radius: 6px;
  border-left: 3px solid var(--primary-green);
  margin: 12px 0;
  font-size: 14px;
}

.conditional-note p {
  margin: 0;
  font-style: italic;
  color: var(--primary-green);
}

@media (max-width: 768px) {
  .enrollment-process {
    padding: 40px 15px;
  }
  
  .department-section h3 {
    font-size: 20px;
    padding: 20px;
  }
  
  .steps-list {
    padding: 20px;
  }
  
  .step-item {
    padding: 16px;
  }
}

