/* Footer */
.ninth-section {
  /* background: linear-gradient(180deg, #f9fcff 0%, #f4f8fc 100%); */
  background-color: rgba(24, 31, 43, 1);
  padding: 56px 0 28px;
  /* color: #2b2f33; */
  /* color: #FFFFFF; */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 24px;
}

.footer-logo {
  flex: 0 0 200px;
  min-width: 0;
}

.footer-logo img {
  width: 90px;
  margin-bottom: 16px;
  display: block;
}

.footer-logo p {
  font-size: 13px;
  color: #7a8695;
  line-height: 1.7;
}

.footer-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.nav-column {
  flex: 1 1 0;
  min-width: 0;
}

.nav-column h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  /* color: #1f2937; */
  color: #FFFFFF;
  letter-spacing: 0.2px;
}

.nav-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-column li {
  line-height: 1.9;
  margin-bottom: 6px;
}

.nav-column a {
  display: inline-block;
  font-size: 13px;
  /* color: #667085; */
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-column a:hover {
  color: #ff4d4f;
  transform: translateX(3px);
}

.footer-qr {
  justify-self: end;
  text-align: center;
}

.footer-qr img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 14px;
  border: 6px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  background: #fff;
}

.footer-qr p {
  margin-top: 10px;
  font-size: 14px;
  /* color: #344054; */
  color: #FFFFFF;
  font-weight: 500;
}

.line {
  width: 100%;
  height: 1px;
  margin-top: 34px;
  background: linear-gradient(90deg, rgba(139, 139, 139, 0.08), rgba(139, 139, 139, 0.26), rgba(139, 139, 139, 0.08));
}

.line_text {
  color: #94a3b8;
  font-size: 13px;
  text-align: center;
  margin-top: 18px;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .footer-content {
    flex-wrap: wrap;
  }

  .footer-logo {
    flex: 0 0 220px;
  }

  .footer-nav {
    flex: 1 1 calc(100% - 260px);
    min-width: 520px;
  }

  .footer-qr {
    width: 100%;
    justify-self: start;
    margin-top: 8px;
  }
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
  }

  .footer-logo,
  .footer-nav,
  .footer-qr {
    width: 100%;
    flex: none;
  }

  .footer-nav {
    flex-wrap: wrap;
    min-width: 0;
    gap: 16px 22px;
  }

  .nav-column {
    flex: 1 1 calc(50% - 11px);
    min-width: 160px;
  }

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

@media (max-width: 480px) {
  .ninth-section {
    padding: 40px 0 22px;
  }

  .footer-logo img {
    width: 128px;
  }

  .footer-nav {
    gap: 14px;
  }

  .nav-column {
    flex: 1 1 100%;
    min-width: 0;
  }

  .nav-column h4 {
    margin-bottom: 8px;
  }

  .nav-column li {
    line-height: 1.75;
    margin-bottom: 2px;
  }

  .footer-qr img {
    width: 116px;
    height: 116px;
  }

  .line {
    margin-top: 28px;
  }

  .line_text {
    padding: 0 14px;
    font-size: 12px;
    line-height: 1.6;
  }
}
