 .footer {
  background: #020617;
  padding: 80px 8% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* FAQ */
.footer-faq h2 {
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.1rem;
}

.faq-item p {
  color: #94a3b8;
}

/* INFO */
.footer-info h3 {
  margin-bottom: 10px;
}

.footer-info p {
  color: #94a3b8;
  margin-bottom: 10px;
}

.btn-footer {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #22c55e;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* bottom */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
  color: #64748b;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}