/* Reset default margins */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Header container */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #008E4B;
  padding: 10px 10px;
  color: white;
}

/* Logo styling */
.logo img {
  height: 52px; /* Adjust logo size */
  width: auto;
}

.image_70 img {
  height: auto; /* Adjust size */
  width: 70%;
}

.image_38 img {
  height: auto; /* Adjust size */
  width: 38%;
}

.image_10 img {
  height: auto; /* Adjust size */
  width: 10%;
}

.container_white_horizontal {
  display: flex; /* Arrange items side by side */
  align-items: center; /* Vertically center content */
  padding-bottom: 2%;
}

.container_grey {
  align-items: center; /* Vertically center content */
  background-color: #dde0de;
  padding: 2%;
  margin: auto;
}

.container_white {
  align-items: center; /* Vertically center content */
  padding: 2%;
  padding-left: 5%;
  padding-right: 5%;
}

.container_green {
  align-items: center; /* Vertically center content */
  background-color: #008E4B;
  padding: 2%;
  padding-left: 5%;
  padding-right: 5%;
}

.text_black {
  flex: 1; /* Take available space */
  padding-left: 7%;
  font-size: 95%;
  text-align: left;
}

.text_white {
  color: white;
  font-size: 90%;
  text-align: center;
}

.text_black_center {
  font-size: 90%;
  text-align: center;
}

.text_green {
  color: #008E4B;
  font-size: 90%;
  text-align: center;
}

/* Navigation menu */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

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

/* Responsive design for small screens */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  nav ul li {
    margin: 10px 0;
  }
}
