/* Footer */
.footer {
  background-color: #1a1446;
  color: #ffffff;
  padding: 32px 64px;
  border-radius: 48px 48px 0 0;
  position: relative;
  min-height: 120px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  flex: 1;
}

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

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

.footer-column-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  margin: 0 0 4px 0;
}

.footer-column-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  white-space: pre-line;
}

.footer-legal {
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  margin: 0 0 24px 0;
}

.footer-legal:last-child {
  margin-bottom: 0;
}

.footer-legal a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.footer-legal a:hover {
  opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer {
    padding: 24px 32px;
  }

  .footer-right {
    flex-direction: column;
    gap: 24px;
  }
}
