body {
  margin: 0;
  padding: 30px 20px;
  font-family: 'Fredoka One', cursive;
  background: linear-gradient(135deg, #e0ccff, #a1c4fd);
  color: #333;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.about-container {
  max-width: 1000px;
  background: #f9f5ff;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(128, 0, 128, 0.15);
}

.page-title {
  text-align: center;
  font-size: 3rem;
  color: #6a0dad;
  margin-bottom: 30px;
}

h2 {
  color: #7b1fa2;
  font-size: 1.8rem;
  margin-top: 30px;
}

p, li {
  font-size: 1.1rem;
  color: #444;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

.back-button {
  margin-top: 40px;
  text-align: center;
}

.back-button a {
  text-decoration: none;
  color: #7b1fa2;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.back-button a:hover {
  color: #4a0072;
}

@media (max-width: 600px) {
  .page-title {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
