.footer {
  background-color: #151b1f;
  color: #d1d5db;
  font-family: "Inria Serif", serif;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.mb__copy {
  display: none;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo img {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.footer-brand .tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  color: #b3c2cb;
  margin: 20px 0 40px;
}

.footer-info,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: #9ca3af;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact__flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info li {
  margin-bottom: 12px;
}

.footer-info a,
.footer-contact a {
  color: #ffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-info a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 12px;
  color: #9ca3af;
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-info,
  .footer-contact {
    text-align: left; /* left aligned instead of center */
    align-items: flex-start;
  }

  .footer-info ul {
    text-align: left;
  }

  /* Each section stacked with spacing */
  .footer-container > * {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .mb__copy {
    display: block;
  }
  .des__copy {
    display: none;
  }
  .footer {
    padding-top: 60px 20px;
  }
}
