body {
  background-color: #f5f5f5;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.brand-demo {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.brand-demo .header {
  background-color: #6a1b9a;
  color: #fff;
  padding: 1.5rem;
  border-radius: 8px 8px 0 0;
  margin: -2rem -2rem 2rem;
}
.brand-demo .header h1 {
  margin: 0;
  font-size: 1.5rem;
}
.brand-demo .content h2 {
  color: #6a1b9a;
}
.brand-demo .content p {
  line-height: 1.6;
}
.brand-demo .call-to-action {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #f57c00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.brand-demo .call-to-action:hover {
  background-color: rgb(194, 98.187755102, 0);
}
.brand-demo .color-swatches {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.brand-demo .color-swatches .swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
}
.brand-demo .color-swatches .swatch.purple {
  background-color: #6a1b9a;
}
.brand-demo .color-swatches .swatch.orange {
  background-color: #f57c00;
}
.brand-demo .hidden {
  display: none;
}
.brand-demo .success-message {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  font-weight: bold;
}
