.footer-section {
  background: #7a0d1d; /* maroon background */
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ffd700; /* gold hover effect */
}

.footer-section .title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  /* gap: 30px; */
  overflow-x: auto;
}

.footer-col ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}
.footer-col ul li {
  margin-top: 1.5rem;
  font-size: 14px;
}

.footer-col hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 10px 0;
  width: 80%;
}

.footer-bottom {
  border-top: 1px solid #fff;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* Hide by default */
.mobile-divider {
  display: none;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 20px 0;
  width: 100%;
}

/* Show only on mobile */
@media (max-width: 600px) {
  .mobile-divider {
    display: block;
  }
}