/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Header Style */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #087720;
  color: white;
  width: 100%;
}

.header .logo img {
  max-width: 100%;    /* Make logo responsive */
  max-height: 60px;   /* Limit the height of the logo to fit the header */
  height: auto;       /* Maintain the aspect ratio */
}

.header .nav ul {
  display: flex;
  list-style: none;
}

.header .nav ul li {
  margin: 0 15px;
}

.header .nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.header .nav ul li a:hover {
  color: #4CAF50; /* Hover color */
}


/* Footer Style */
.footer {
  background-color:  #087720;
  color: white;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  margin-top: auto;  /* Ensures footer stays at the bottom */
}
