a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width:768px) {
  .container {
    padding: 0 24px;
  }
}

footer {
  background: #1f2937;
  color: #fff;
  padding: 48px 0;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width:768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-title {
  color: #FBBF24;
  font-weight: 900;
  margin: 0 0 10px;
  font-size: 18px;
  box-sizing: border-box;
}

.footer p, .footer li {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.footer ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.footer-contact {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.footer-contact .row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width:768px) {
  .footer-contact .row {
    justify-content: flex-start;
  }
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
  font-size: 13px;
  box-sizing: border-box;
}

