
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

.container {
  display: flex;
  flex: 1;
  flex-direction: row;
}

.sidebar {
  background-color: #000000;
  padding: 20px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

.sidebar ul li {
  margin: 20px 0;
  text-align: center;
}

.sidebar a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.sidebar a:hover {
  color: orange;
}

.logo {
  width: 100px;
  margin-bottom: 20px;
}

.info {
  flex: 1;
  padding: 40px;
  background-color: #ffffff;
}

header h1 {
  color: orange;
  font-size: 36px;
  border-bottom: 3px solid orange;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

h2 {
  color: #000000;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
}

ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 8px;
}

.section-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 15px;
  border: 3px solid orange;
  border-radius: 8px;
}

footer.footer {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  max-width: 45%;
  margin-bottom: 10px;
}

footer p {
  margin-bottom: 5px;
}

.contact-section {
  background-color: #f9f9f9;
  border-left: 5px solid orange;
  padding: 20px;
  border-radius: 8px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }

  .sidebar ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .sidebar ul li {
    margin: 10px;
  }

  .info {
    padding: 20px;
  }

  .footer-left,
  .footer-right {
    max-width: 100%;
  }
}
