/* Footer Styles */
.footer-section {
  background: linear-gradient(to bottom, #ff701e,black, black);
  color: white;
}

.footer-logo {
  max-width: 210px;
}

.footer-section h5 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffff;
}

.footer-section .footer-text {
  font-size: 15px;
  line-height: 23px;
}

.footer-section .footer-links {
  list-style: none;
  padding: 0;
}

.footer-section .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-section .footer-links a {
  color: white;
  text-decoration: none;
}

.footer-section .footer-links a:hover {
  text-decoration: underline;
  color: #4285F4;
}

/* Footer Bottom Styles */
.footer-bottom {
  background-color: black; /* Solid Black Background */
  color: silver;
}

.footer-bottom .dotted-line {
  border: none;
  border-top: 2px dotted orange;
  width: 100%;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .footer-section .row > div {
    margin-bottom: 1.5rem;
  }

  .footer-bottom .dotted-line {
    width: 75%;
  }
}
