body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  margin: 40px;
  color: #000;
}
h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #007bff;
}
ul {
  list-style-type: none;
  padding-left: 0;
}
li {
  background-color: #ffffff;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  color: #000;
}
li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.categoria {
  cursor: pointer;
  font-weight: bold;
  background-color: #007bff;
  color: #000;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 5px;
}
.sublist, .normativa-list {
  margin-top: 8px;
  padding-left: 20px;
  display: none;
  color: #000;
}
.descripcion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 6px;
  background-color: #e9f5ff;
  margin: 8px 0;
  color: #000;
}
.desc-text {
  text-align: left;
  flex-grow: 1;
  margin-left: 10px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #28a745;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.si-label {
  display: none;
  font-weight: bold;
  color: #28a745;
  margin-left: 10px;
}
.normativa-list li {
  background-color: #f1f1f1;
  padding: 8px;
  border-radius: 4px;
  margin: 4px 0;
  color: #000;
}