body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}

header {
  background-color: #3c6e47;
  color: white;
  padding: 0.5rem;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;
  gap: 3rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 2rem;
  background: white;
  margin: auto;
  max-width: 800px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
}

.hero {
  background-image: url('hike.jpg'); 
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.hero-content {
  background: rgba(255, 255, 255, 0.4);
  max-width: 500px;
  margin: auto;
  text-align: center;
  padding: 20px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #2d6a4f;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

form {
  background-color: #cdeed0;
  padding: 1.5rem;
  max-width: 500px;
  margin: 1rem auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

form input {
    width: 300px;
    height: 30px;
    margin-bottom: 1rem;
}

.form-btn {
  background-color: #2a7a3b;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#confirmation-message {
    text-align: center;
}

.links section {
    border: 1px solid #2a7a3b;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
}

footer {
  text-align: center;
  padding: 0.5rem;
  background: #3c6e47;
  color: white;
}
