footer {
  background: #1e3a8a;
  color: white;
  padding: 1rem 0.5rem;
  text-align: center;
  font-size: 0.8rem;

}
footer p {
  margin: 0.3rem 0;
  line-height: 1.4;
}
footer a {
  color: #cce7ff;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: #ffffff;
}
footer::before {
  content: none;
  display: block;
  width: 80px;
  height: 2px;
  background: white;
  margin: 0 auto 1rem;
  opacity: 0.3;
  border-radius: 2px;
}
/* Соцсети */
.social-icons {
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #cce7ff;
  color: #1e3a8a;
}
/* Адаптация для мобилок */
@media (max-width: 600px) {
  footer {
    padding: 1.5rem 1rem;
    font-size: 0.8rem;
  }
  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
