.footer {
  width: 100%;
  padding: 15px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-left {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-right {
  display: flex;
  gap: 15px;
}

.footer-right a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #ffffff;
}

@media (max-width: 360px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
