/* footer css */
footer {
  background: #f7f7f7;
  padding: 50px 20px 20px;
  color: #222;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  color: #000000;
  display: block;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #000000;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #ffffff;
  background-color: #000000;
  padding: 10px 15px 10px 15px;
}

.payments img {
  height: 30px;
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}