* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Georgia", serif;
  margin: 0;
  padding: 0;
  color: #4b2e2e;
  background-color: #fff8dc;
  line-height: 1.8;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8b4513;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #8b4513;
  color: #fff8dc;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.title {
  font-size: 28.8px;
  font-weight: bold;
  color: #fff8dc;
}

.navlinks {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navlinks li {
  display: inline;
}

.navlinks a {
  font-weight: 600;
  color: #fff8dc;
}

.navlinks a:hover {
  color: #ffd700;
}

.feedback-outline {
  max-width: 600px;
  margin: 50px auto;
  background-color: #fff8e1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feedback-outline h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feedback-outline p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #6d4c41;
}

.feedback-form label {
  font-weight: bold;
  display: block;
  margin: 10px 0 5px;
  color: #5d4037;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background-color: #faf3e0;
  color: #333;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: #5d4037;
  box-shadow: 0 0 4px rgba(93, 64, 55, 0.5);
}

.feedback-form button {
  background-color: #5d4037;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.feedback-form button:hover {
  background-color: #3e2723;
}

footer {
  background-color: #4b2e2e;
  color: #fff8dc;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer p {
  margin: 0;
  font-size: 14.4px;
}

.footer-outline a {
  color: #ffd54f;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}

.footer-outline a:hover {
  color: #ffc107;
  text-decoration: underline;
}
