* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0A0A0A;
  color: #E0E0E0;
  line-height: 1.6;
}

.content-container {
  padding: 4% 8%;
  max-width: 1200px;
  margin: 0 auto;
}

.title {
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(90deg, #FBCD02, #FFD700);
  /* Yellow gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #FBCD02;
  /* Brand yellow */
  font-family: 'Orbitron', sans-serif;
}

.paragraph {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.list a,
.paragraph a {
  color: #E0E0E0;
}

.list a:hover,
.paragraph a:hover {
  color: #FFD700;
  /* Lighter yellow for hover */
}

.list {
  list-style-type: none;
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
  position: relative;
}

.list li::before {
  content: "•";
  color: #FBCD02;
  /* Brand yellow */
  font-size: 1.5em;
  position: absolute;
  left: -20px;
  top: -2px;
}