.footer {
  background: #686868df;
  color: #e9ecf2;
  padding: 12px;
}

.footerGrid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 0;
}

.column h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  color: #ffffff;
}

.column p {
  color: white;
  line-height: 1.8;
  font-size: 16px;
  max-width: 24rem;
}

.column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.column ul li {
  margin-bottom: 8px;
}

.column ul li a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.column ul li a:hover {
  color: #ffffff;
}

/* Bottom bar */
.bottomBar {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: white;
  font-size: 14px;
}

/* Minimal footer */
.footerMinimal {
  background: #f3f8fc;
  display: flex;
  justify-content: space-between;
  padding: 24px;
}

.footerMinimal p {
  color: #6b7280b2;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 1100px) {
  .footerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 740px) {
  .footer {
    padding: 4.5rem 1.5rem 2.5rem;
  }

  .footerGrid {
    grid-template-columns: 1fr;
  }

  .bottomBar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
