/* Base styles */
body {
  background-color: #fff;
  color: #333;
  font-family: 'Arial', sans-serif;
}

/* Navigation styles */
nav {
  background-color: #d4af37; /* Gold */
  padding: 1rem;
}

nav a {
  color: #e63946; /* Red */
  text-decoration: none;
  margin-right: 1rem;
}

/* Header styles */
header {
  background-color: #9b5de5; /* Purple */
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

/* Main content styles */
main {
  padding: 2rem;
}

/* Footer styles */
footer {
  background-color: #d4af37; /* Gold */
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* Button styles */
button {
  background-color: #e63946; /* Red */
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #9b5de5; /* Purple */
}

/* Utility classes */
.text-gold {
  color: #d4af37; /* Gold */
}

.text-red {
  color: #e63946; /* Red */
}

.text-purple {
  color: #9b5de5; /* Purple */
}
