/* Reset some defaults */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
  color: #0d448c;
  font-family: 'Tipo Brasil Rounded',Inter,sans-serif;
}

/* Global body */
body {
  background-color: #f5f5f5;
  color: #222;
  line-height: 2.3;
  font-size: 18px;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; /* Center the main content horizontally */
  align-items: flex-start; /* Align items at the top of the viewport */
  min-height: 100vh; /* Full viewport height */
  flex-direction: column; /* Ensure content flows vertically */
}

/* Header */
header.header {
  background-color: #009739;
  color: white;
  padding: 20px 0;
  width: 100%;
}

.header .header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Responsive padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

header.header .logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff; 
}

header.header nav {
  display: flex; /* Ensures links are inline */
}

header.header nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 18px;
}

header.header nav a:hover {
  text-decoration: underline;
}

/* Main container for content */
main {
  max-width: 1000px; /* Limit content width */
  width: 100%; /* Ensure it scales responsively */
  padding: 20px;
  margin-top: 40px;
  margin-left: auto; /* Center horizontally */
  margin-right: auto; /* Center horizontally */
  background: white;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  border-top: 8px solid #FEDD00;
  margin-bottom: 20px;
  box-sizing: border-box;
  border-radius: 8px; /* Smooth corners */
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0d448c;
}

p, li, br {
  margin-bottom: 12px;
}

/* Text formatting for the page content */
p {
  font-size: 19px;
  color: #333; /* Slightly lighter color for readability */
}

/* Lists */
ul {
  padding-left: 24px;
}

ul li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  align-self: center;
  font-size: 16px;
  margin: 40px 0;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  header.header {
    flex-direction: column; 
    align-items: flex-start;
	padding: 5px 0;
    width: 100%;
  }

  header.header nav {
    flex-direction: column; 
    margin-top: 10px;
  }

  main {
    padding: 10px;
    margin-top: 20px;
  }
  
  
  header.header nav a {
   color: white;
   margin-left: 20px;
   text-decoration: none;
   font-size: 15px;
   line-height: 2.0;
 }
}
