/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and global styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
}

/* Header layout */
.header-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

/* Logo beside title */
.logo {
  max-width: 80px;
  height: auto;
}

/* Header title */
header h1 {
  font-size: 2rem;
  font-family: 'Georgia', serif;
  margin: 0;
}
/* Header styles */
header {
  background-color: #006644;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 30px;
}



/* Header title */
header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

/* Navigation styles */
nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

nav a.active {
  text-decoration: underline;
  color: #ccebd4;
}

/* Main content styles */
main {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

main h2, main h3 {
  color: #006644;
  margin-bottom: 15px;
  font-family: 'Georgia', serif;
}

main p, main ul, main form {
  margin-bottom: 20px;
}

/* Section divider */
section {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* Footer styles */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #666;
}

/* Form styles */
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #006644;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #004d33;
}

/* Accessibility focus styles */
button:focus, a:focus {
  outline: 2px dashed #006644;
  outline-offset: 2px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }

  nav a {
    display: block;
    margin: 5px 0;
  }

  main {
    padding: 20px;
  }
}