.main-footer {
  background-color: #0d6efd;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-left {
  width: 60%;
}

.footer-right {
  width: 40%;
}

.footer-title {
  font-weight: 500;
}

.footer-text {
  font-size: 14px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.footer-highlight {
  font-weight: 500;
  white-space: nowrap;
}

.footer-note {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 6px;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .footer-content {
    flex-wrap: wrap;
  }
  .footer-left {
    width: 100%;
    margin-bottom: 12px;
  }
  .footer-right {
    width: 100%;
  }
  .footer-text {
    padding: 0;
  }
  span.footer-title {
    white-space: nowrap;
  }
  .footer-text {
    align-items: baseline;
  }
  .footer-text {
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .footer-highlight,
  .footer-title {
    padding-right: 8px;
  }
}