/* Base Styles */
body {
  background-color: #fdfdfd;   /* softer background for readability */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3 {
  color: #333;                 /* neutral dark text */
  text-transform: uppercase;
  text-align: center;
  margin: 20px 0;
}

/* Paragraphs */
p {
  color: #444;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 1em;
}

p.note {
  font-style: italic;
  color: #666;
}

/* Highlight Box */
.highlight {
  background-color: #fffa90;
  padding: 10px;
  border-radius: 5px;
}

/* Links */
a {
  text-decoration: none;
  color: #006400;
  font-weight: bold;
}

a:hover {
  color: #b72a22;
  text-decoration: underline;
}

/* Navigation */
nav ul {
  display: flex;
  flex-wrap: wrap;             /* allows wrapping on small screens */
  justify-content: center;
  list-style-type: none;
  padding: 10px;
  margin: 0;
  background-color: #e0eee0;
}

nav ul li {
  margin: 0 15px;
}

nav a {
  color: #006400;
  font-weight: bold;
}

/* Header Banner */
header img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main Content */
main {
  padding: 20px;
}

/* Container */
#container {
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Floated Images */
.float-left {
  float: left;
  margin: 10px;
  max-width: 45%;              /* responsive image sizing */
}

.float-right {
  float: right;
  margin: 10px;
  max-width: 45%;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
footer {
  background-color: #e0eee0;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

footer img {
  max-width: 80px;
  height: auto;
  vertical-align: middle;
}

/* FAQ Page Only */
.faq-page main {
  column-count: 3;
  column-gap: 2em;
  column-rule: 1px solid #ccc;
  padding: 2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  #container {
    width: 95%;
    margin: 10px auto;
  }

  .float-left, .float-right {
    float: none;
    max-width: 100%;
    margin: 10px auto;
    display: block;
  }

  .faq-page main {
    column-count: 1;
    column-gap: 0;
    column-rule: none;
    padding: 1em;
  }
}
