.footer-bottom .menu {
  display: flex;
  justify-content: center;        /* выравнивание по центру */
  flex-wrap: wrap;
  gap: 20px;                      /* отступы между пунктами */
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.footer-bottom .menu li a {
  color: #800000 !important;      /* бордовый цвет */
  font-size: 3em !important;      /* увеличить в 3 раза (если базовый 16px → будет ~48px) */
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .menu li a:hover {
  color: #a00000 !important;      /* чуть светлее при наведении */
}