/* style.css – basic minimalist styling */

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.wrapper {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

header, footer {
  text-align: center;
  margin-bottom: 2rem;
}

h1 {
  color: #3fa36f; /* Green title */
}

h2, h3 {
  color: #3fa36f;
}

a {
  color: #3fa36f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}
section { margin-top: 2rem; }
/* Minimalist nav bar with clearly separated hyperlinks */
.navbar {
  text-align: center;
  margin-bottom: 2rem;
}

.navbar a {
  margin: 0 1rem;
  color: #3fa36f;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1rem;
}

.navbar a:hover {
  text-decoration: none;
}
.site-footer {
  background-color: #f0fdf4; /* very light green */
  padding: 2rem 1rem;
  border-top: 1px solid #ccc;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #555;
  text-align: left;
}

.site-footer a {
  color: #3fa36f;
  text-decoration: underline;
}

.footer-table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
}

.footer-table td {
  padding: 1rem;
}

.footer-logo img {
  max-height: 150px;
  width: auto;
  display: block;
}

.footer-text {
  text-align: left;
}

