.custom-footer {
  background-color: #000000;
  color: #f8f9fa;
  padding: 3rem 0 2rem;
  border-top: 1px solid #dee2e6;
}

.custom-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col.description {
  flex: 0.75;
  min-width: 300px;
  margin-right: 2rem;
}

.footer-links-wrapper {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-end;
}

.footer-col {
  flex: 1 1 140px;
  min-width: 120px;
}

.custom-footer a {
  color: #f8f9fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.custom-footer a:hover {
  color: #6366f1;
}

.custom-footer ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-footer ul li {
  margin-bottom: 0.4rem;
}

.custom-footer h6 {
  text-transform: lowercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

.brand {
  font-weight: bold;
  font-size: 1.25rem;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .custom-footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.custom-footer a.fw-medium {
  font-weight: 500; /* Medium weight */
  color: #6366f1;   /* Light color to match footer text */
  text-decoration: underline; /* Remove underline */
  transition: color 0.2s ease;
}

.custom-footer a.fw-medium:hover {
  color: #4245f4; 
  text-decoration: none; /* Optional: underline on hover */
}