header {
  text-align: center;
  color: white;
  padding: 10px 0;
}

header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .logo img {
  height: 70px;
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  color: #000;
}

footer a {
  color: #696969;
  font-size: 14px;
  text-decoration: none;
  margin: 0px;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin-bottom: 10px;
}

.bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background-color: #f4f4f4;
  margin-left: 30px;
  margin-right: 30px;
  flex-wrap: wrap;
}

.footer-left-1, .footer-left, .footer-center, .footer-right, .footer-right-1 {
  text-align: left;
  flex: 1;
  min-width: 200px;
}

.social a {
  padding-left: 5px;
}

.social a:hover {
  text-decoration: none;
}

.mobile-footer {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bottom {
    display: none;
  }

  .mobile-footer {
    display: flex;
    flex-direction: row;
  }

  .mobile-footer a {
    padding: 10px;
  }
}