body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #333;
}

h1 {
  color: #000000;
}

p {
  color: #000000;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.banner {
  text-align: center;
  margin-bottom: 20px;
}

.banner img {
  width: 100%;
  height: auto;
}

ul {
  padding-left: 20px;
}

a {
  color: #3366CC;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
/* CSS Styles for Navigation Bar */
nav {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.logo img {
  height: auto;
  width: auto;
}
.logo img:hover{
  background-color: #111;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 20px;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  background-color: #111;; /* Change this to the desired hover color */
  padding: 10px;
}
.image-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.image-container img {
    max-width: 200px;
    margin-right: 20px;
}

.description {
    flex: 1;
}