/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background: #2EB24C;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

/* Sections */
section {
  padding: 40px 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2EB24C;
}

section p, section ul {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

section ul {
  list-style-type: disc;
  padding-left: 40px;
}

section ul li {
  margin-bottom: 10px;
}

/* Contact Section */
#contact a {
  color: #2EB24C;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #2EB24C;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 40px;
}

footer p {
  font-size: 0.9rem;
}