.footer-section {
  background: #000;
  color: white;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-section .py-5 {
    padding: 3rem 0 !important;
  }
  
  .footer-heading {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
  
  .footer-text {
    font-size: 0.95rem;
  }
  
  .footer-links a {
    font-size: 0.95rem;
  }
  
  .footer-copyright {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .footer-section .py-5 {
    padding: 2rem 0 !important;
  }
  
  .footer-heading {
    font-size: 1rem;
  }
  
  .footer-text,
  .footer-links a {
    font-size: 0.9rem;
  }
}