 /* General Styles */
 body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure full height for the body */
}

/* Header Styles */
header {
  background-color: orange;
  color: black;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

header .logo {
  width: 70px; /* Set your desired width for the logo */
  height: auto; /* Maintain aspect ratio */
}

header .login {
  padding: 10px 15px;
  color: #333;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

nav {
  margin-left: auto;
}

nav a {
  color: black;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
}

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

/* About Us Section */
.about-us-container {
  flex: 1; /* Ensures this section takes up remaining height */
  padding: 40px;
  background-color: antiquewhite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-us-title {
  font-size: 50px;
  color: orange;
  margin-bottom: 20px;
  text-align: center;
}

.about-us-content {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  color: 333;
}

.about-us-highlight {
  color: orange;
  font-weight: bold;
}

.about-us-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 30px;
  font-style: italic;
  color: #333;
}

hr {
  width: 90%;
  border: none;
  border-top: 1px solid #ddd;
  margin: 40px auto;
}

/* Footer Styles */
footer {
  background-color: orange;
  color: white;
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}