.advantages-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--background-light) 0%, #f5f7fa 100%);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.advantage-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.advantage-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--holberton-blue);
}

.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantage-list li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.advantage-list li:last-child {
  border-bottom: none;
}