.section-roles {
  padding: 60px 30px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.role-card {
  background: #f8f8f8;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.role-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.role-card h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.role-card ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
  font-size: 18px;
  line-height: 1.5;
}

