/* css/footer.css
   Подвал сайта
   Вынесено из style.css без изменения содержимого правил. */

.site-footer {
  background: #13152b;
  padding: 30px 20px;
  margin-top: 50px;
  border-top: 1px solid #2a2f5a;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-section {
  flex: 1;
  min-width: 200px;
}
.footer-section h4 {
  color: #f5c542;
  margin-bottom: 10px;
}
.footer-section p, .footer-section a {
  color: #ccc;
  font-size: 0.9em;
  line-height: 1.6;
}
.footer-section a {
  display: block;
  text-decoration: none;
  margin-bottom: 5px;
}
.footer-section a:hover { color: #e94560; }
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #2a2f5a;
  color: #aaa;
  font-size: 0.85em;
}
