/* Основний футер */
.footer-helix {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #304279;
  padding: 30px 40px;
  color: #ffffff;
}

.footer-box {
  flex: 1;
}

.footer-center {
  text-align: left;
}

.footer-right {
  text-align: right;
}

.footer-helix h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-helix a {
  color: #ffffff;
  text-decoration: none;
}

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

/* Нижня полоска */
.footer-copy {
  background-color: #252525;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* Адаптив */
@media (max-width: 768px) {
  .footer-helix {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .footer-right {
    text-align: center;
    margin-top: 15px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    margin-bottom: 15px;
  }
}
