/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Flex layout for header */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}

/* Navigation */

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap; /* prevent wrapping */
    padding: 0;
    margin: 0;
}

nav ul li {
    position: relative;
    margin: 0 10px;
}

nav ul li a {
    color: #00541B;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap; /* prevent link text from wrapping */
    padding: 8px 12px; /* add space inside links */
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Show dropdown on hover */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Small Screen Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

/* Header */
header {
    background-color: #ffffff;
    color: #00541B;
    padding: 0;

}

header h1 {
    text-align: center;
    margin-bottom: 0px;
}


/* Hero Section */
.hero {
    background-color: #00541B;
    color: #ffffff;
    padding: 20px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.hero h2 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
	padding: 10px;
}

p {
    font-size: 18px;
	padding: 10px 10px 30px;
}

/* Content Section */
.content h2 {
    color: #00541B;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
}

/* Contact Box */
.contact-box {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.contact-box a {
    color: #00541B;
}

/* Logo Image */
.logo-img {
    height: 30px;
    width: auto;
}

/* Footer */

footer {
  background: #00541B;
  color: #fff;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0;
}

.footer-column {

  width: 25%;
  padding: 10px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-column p,
.footer-column ul li,
.footer-column a {
  font-size: 16px;
  text-decoration: none;
  color: inherit; /* keeps text white */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding: 5px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .footer-column {
    width: 100%;
  }

}


/* end footer area */

hr {
    border: none;            
    height: 3px;             
    background-color: orange; 
    margin: 20px 0;         
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

table td {
  border: 1px solid #dcdcdc;
  padding: 10px;
  vertical-align: top;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table tr:hover {
  background-color: #eef5f9;
}

table td:first-child {
  font-weight: bold;
  background-color: #f3f6f9;
}

table td:nth-child(2), 
table td:nth-child(3) {
  text-align: center;
}


@media (max-width: 768px) {
  .menu-toggle {
  display: block;
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  }

  nav {
    position: relative;
    width: 100%;
  }

nav .main-menu {
  display: none;
  flex-direction: column;
  background-color: white;
  width: 240px;
  height: auto; /* Only as tall as content */
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

  nav .main-menu.active {
    display: flex;
  }

  nav .main-menu li {
    margin: 10px 20px;
  }

  nav .dropdown-menu {
    position: static;
    box-shadow: none;
    min-width: auto;
  }

  nav .dropdown:hover .dropdown-menu {
    display: none; /* disable hover dropdown on mobile */
  }

  nav .dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}

/* Adjusting two coloms at desktop en one colom under other at mobile */ 

.flex-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}

.flex-col {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.flex-col img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .flex-col {
    width: 100%;
  }
  .flex-col img {
    margin-top: 20px; /* adjust as needed */
  }

}

/* for components Adjusting 3 coloms at desktop en one colom under other at mobile */ 

.flex-row-comp {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}

.flex-col-comp {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
}

.flex-col-comp img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}


@media (max-width: 768px) {
  .flex-col-comp {
    width: 100%;
  }

}

