.footer {
  background-color: #010b1c;
  color: #ccc;
  padding: 40px 20px;
  font-family: 'Manrope', sans-serif;
	margin: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
}

.footer-logo {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 14px;
  color: #666;
}

/* Адаптивность */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}