body{
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header{
  background: #6200ea;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 40px;
}

main{
  padding: 40px;
  max-width: 600px;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-details{
  color: #6200ea;
  font-size: 28px;
}

.event-details p{
  font-size: 20px;
  color: #333;
}

.booking-form{
  margin-top: 32px;
}

.booking-form label{
  display: block;
  margin: 10px 0 5px;
}

.booking-form input, .booking-form select , 
.booking-form textarea{
  width: 100%;
  padding: 10px 0px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-indent: 8px;
}

.booking-form button{
  background: #6200ea;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.booking-form button:hover{
  background: #3700b3;
}

footer{
  text-align: center;
  padding: 10px 0;
  background: #6200ea;
  color: white;
  margin-top: 40px;
}

