.footer {
  position: static;
  margin-top: 48px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(160deg, #0b5fff, #0a4fe0);
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0 1rem;
  align-items: start;
}

.footer-section h4 {
  margin: 0 0 .8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-section--brand {
  min-width: 0;
}

.footer-section--narrow {
  min-width: 0;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-image {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: .75rem;
}

.footer-description {
  margin: 0;
  max-width: 320px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  font-size: .96rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: .45rem 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: .95;
  transition: color .2s ease, opacity .2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffd600;
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255,255,255,.18);
}

.footer-copy {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  color: #fff;
  font-size: 1.1rem;
  transition: color .2s ease, transform .2s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  color: #ffd600;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-description {
    max-width: 100%;
  }
}