.footer {
  background-color: #192024;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: relative;
  z-index: 100;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}

.footer__text {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

.footer-top {
  background-color: #f8f9fb;
  padding: 4rem 1rem;
  color: #333;
  font-family: 'Open Sans', sans-serif;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.footer-about,
.footer-links {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}

.footer-links a {
  color: #507ca9;
  text-decoration: none;
  font-size: 0.95rem;
}

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