/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background-color: #f5f5f5;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-top {
  flex: 0 0 1.5in; /* Adjust the size as per your requirements */
  max-width: 100%; /* Ensure the logo fits within the container */
  height: auto; /* Maintain the original aspect ratio */
}

.logo-top img {
  width: 100%;
  height: auto;
  max-height: 1.5in; /* Adjust the size as per your requirements */
  object-fit: contain; /* Maintain the original aspect ratio */
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 10px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
}

/* Body Logo */
.logo-body {
  text-align: center;
  margin: 20px 0;
}

.logo-body img {
  width: 50%; /* Reduce the size by half */
  height: auto;
  max-height: 0.75in; /* Adjust the size as per your requirements */
  object-fit: contain; /* Maintain the original aspect ratio */
}

/* Footer */
footer {
  background-color: #f5f5f5;
  color: #333;
  padding: 20px;
  text-align: center;
}

.logo-bottom {
  flex: 0 0 1in; /* Adjust the size as per your requirements */
  margin-top: 20px;
}

.logo-bottom img {
  width: 100%;
  height: auto;
  max-height: 1in; /* Adjust the size as per your requirements */
  object-fit: contain; /* Maintain the original aspect ratio */
}

footer a {
  color: #333;
  text-decoration: none;
}
