body {
  font-family: "Roboto", sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}

.dropbox {
  background-color: #2c2c2c;
  border-radius: 8px;
  margin-bottom: 16px;
}

.dropbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.dropbox-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.toggle-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.dropbox.active .toggle-icon {
  transform: rotate(-135deg);
}

.dropbox-content {
  padding: 0 20px 20px;
  display: none;
  line-height: 1.8;
}

.dropbox.active .dropbox-content {
  display: block;
}

.dropbox-content p,
.dropbox-content ul {
  margin: 0;
  color: #a3a3a3;
}

.dropbox-content ul {
  padding-left: 20px;
}

.dropbox-content ul ul {
  list-style: disc;
  padding-left: 20px;
}

