/* Custom Footer */
.custom-footer {
  background-color: #f1c40f;
  color: white;
  padding: 50px 20px 0;
  font-family: "Kantumruy Pro", "Noto san";
}

/* Footer Layout Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Individual Footer Column */
.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

/* Column Titles */
.footer-column h3,
.footer-column h4 {
  margin-bottom: 15px;
  font-weight: bold;
  color: white;
}

/* Column Text */
.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: white;
}

/* Link List */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li a {
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000;
}

.footer-column ul li a:hover i {
  color: #000;
}

.footer-column ul li i {
  font-size: 16px;
  color: white;
  transition: color 0.3s ease;
}

/* Social Icons */
.footer-icons a {
  font-size: 24px;
  margin-right: 15px;
  color: white;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #000;
}

/* Contact Info Styling */
.contact-info p {
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

/* Footer Bottom Section */
.footer-bottom {
  background-color: #d3ae1d;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
  color: white;
}

/* Responsive Fix */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-icons {
    justify-content: center;
  }
}
