.footerWrapper {
  width: 100%;
  background: #1081c9;
  color: #fff;
  padding: 2.5rem 0 1.2rem 0;
  font-family: 'Tw Cen MT', Arial, sans-serif;
  border-top: 2px solid #fff;
}

.footerContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footerCol {
  /* min-width: 220px; */
  /* flex: 1 1 220px; */
  margin-bottom: 1.5rem;
}

.footerCol h4 {
  font-family: 'Agency FB', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02rem;
}

.footerCol p, .footerCol a, .footerCol li {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.15rem;
  text-decoration: none;
  line-height: 1.15;
}

.footerCol a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footerCol a:hover {
  color: #de751c;
}

.footerCol ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerBottom {
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
  margin-top: 1.5rem;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .footerContent {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .footerCol {
    min-width: 0;
    flex: 1 1 100%;
  }
} 