/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #8DB739
; /* Dark green background */
    color: #000000; /* Black text */
    line-height: 1.6; /* Improve text readability */
font-size: 16px; /* or another value you prefer */
}

/* Header styling */
header {
    background-color: #8DB739
; /* Lighter green for header */
    color: #000; /* Black text in the header */
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #41b375; /* Add a slight border for separation */
}

header h1 {
    margin: 0;
}

label { 
text-align: center !important;
}



/* Navigation menu */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav a {
    color: black; /* Black links */
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main content styling */
main {
    padding: 20px;
}

/* Post styling */
.post {
    border: 1px solid #000; /* Black border for posts */
    margin: 20px 0;
    padding: 15px;
    background-color: #8DB739; /* Light green background for posts */
    color: #000; /* Black text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
}

.post h2 {
    margin: 0 0 10px;
    color: #000; /* Black for post titles */
}

.post p {
    margin: 5px 0;
}
.post a {
    color: #000; /* Black links */
    text-decoration: none; /* Removes underline */
    font-weight: bold; /* Makes text bold */
    display: block; /* Allows centering in its container */
    text-align: center; /* Centers the text */
    margin: 0 auto; /* Adds auto margins for centering */
}

.post a:hover {
      
           text-decoration: underline;
}

/* Footer styling */
footer {
    text-align: center;
    background-color: #8DB739; /* Light green footer */
    padding: 10px;
    color: #000; /* Black footer text */
    font-size: 14px;
  margin-top: 20px;
}

color: #000 !important;

.logo-container {
 
    max-width: 100%; /* Ensures the image does not exceed the container's width */
    height: auto; /* Maintains the aspect ratio */
    display: block; /* Removes extra spacing below the image */
    margin: 0 auto; /* Centers the image */

   
}

.logo {
    max-width: 100%; /* Ensures the logo is responsive */
   
}

/* Center the navigation buttons */
.navigation-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px; /* Space between buttons */
}

/* Style for the buttons */
.navigation-buttons button {
    background-color: #004d00; /* Dark green */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navigation-buttons button:hover {
    background-color: #007300; /*
    
    #blog-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.post {
    background-color: #e6ffe6;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #004d00;
}

.post h2 {
    color: #004d00;
}

.post a {
    color: #000; /* Black links */
    text-decoration: none; /* Removes underline */
    font-weight: bold; /* Makes text bold */
    display: block; /* Allows centering in its container */
    text-align: center; /* Centers the text */
    margin: 0 auto; /* Adds auto margins for centering */
}
   


.post a:hover {
    
          text-decoration: underline;
}




.contact h2 {
  text-align: center; /* Centers the "Contact Us" text */
  color: #333;
  margin-bottom: 20px;
}
h2 {
  text-align: center !important;
}
p {
text-align: center!important;
}
  
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent; /* Remove white background */
padding-bottom:30px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: none; /* Remove any shadow that creates a boxed effect */
  max-width: 400px;
  margin: 0 auto;
}

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

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box; /* Include padding in width */
}

form button {
  background: transparent; /* Make the button transparent */
  border: 2px solid #333;  /* Add a border for visibility */
  color: #333;             /* Text color */
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
margin-top:20px;
}

form button:hover {
  background: rgba(0, 0, 0, 0.1); /* Add slight transparency on hover */
}


/* Sidebar styling */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #8DB739;
  color: #111;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 20px;
outline:none;
}


sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px 20px;
}

.sidebar ul li a {
  text-decoration: none;
  display: block;
  transition: 0.3s;
}


/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  border: 2px solid transparent; /* Transparent border */
  background-color: transparent; /* Transparent background */
  color: black !important; /* Force text to be black */
  font-weight: bold; /* Bold text */
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
  outline: none; /* Removes the default browser focus outline */
}

.close-btn:active, .close-btn:focus {
  border-color: black; /* Black outline on interaction */
}


.open-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Open sidebar styles */
.sidebar.open {
  left: 0;
}

main{
font-size: 16px;


}