#footer {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 40px 3rem;
  font-family: Arial, sans-serif;
}



.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

a{
  color: white;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.6;
}

/* =========================
   FOOTER MOBILE
========================= */
@media (max-width: 600px) {
  #footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;  /* Make text centered */
    padding: 40px 20px 20px;
  }

  .footer-content {
    flex-direction: column; /* Stack sections vertically */
    align-items: center;    /* Center each section */
    gap: 15px;
  }
}
