/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

header {
  background-color: #28a745; /* Irish green */
  padding: 20px 0;
  text-align: center;
}

header h1 {
  color: white;
  font-size: 2.5em;
}

nav ul {
  list-style: none;
  margin-top: 10px;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

section {
  padding: 40px 0;
}

h2 {
  color: #28a745;
  font-size: 2em;
  margin-bottom: 20px;
}

ul {
  list-style: none;
}

ul li {
  font-size: 1.2em;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: bold;
  margin: 10px 0 5px;
}

form input, form textarea {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 1em;
  border: 1px solid #ddd;
  border-radius: 5px;
}

form button {
  padding: 15px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
}

form button:hover {
  background-color: #218838;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 1em;
}
