.feedback {
  display: contents;
}

.testimonials {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.testimonials:hover {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}

.footer {
  background: #0a1423;
  color: var(--text);
  padding: 28px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  max-width: 1180px;
  margin: 0 auto 32px;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--stroke);
}

.footer-bottom {
  border-bottom: none;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 0.35rem;
  font-weight: 600;
}

.links a:hover {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer {
    width: 100%;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
