.footer {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  margin-top: 80px;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 1px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-text {
  color: var(--nav-item-color);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 1px;
  margin: 0;
}

.footer-copyright {
  color: var(--nav-item-color);
  font-size: 14px;
  font-weight: 550;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}