body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Sticky Toolbar */
.toolbar {
  position: sticky;
  top: 0;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

.toolbar nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}
.toolbar nav a:hover {
  text-decoration: underline;
}

/* Carousel */
.carousel-container {
  overflow: hidden;
  width: 100%;
  height: 500px;
}
.carousel {
  display: flex;
  transition: transform 1s ease;
}
.carousel img {
  width: 100%;
  height: auto;
}

/* Feedback Form */
.feedback-section {
  padding: 50px;
  text-align: center;
  background-color: #f9f9f9;
}
.feedback-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.feedback-form input,
.feedback-form textarea {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.feedback-form button {
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.feedback-form button:hover {
  background-color: #0056b3;
}
#formMessage {
  margin-top: 15px;
  font-weight: bold;
}
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}
