.footer-toggle-container {
  font-family: Arial, sans-serif;
}
.footer-toggle-content {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}
.footer-toggle-button {
  background-color: #04569B;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.footer-toggle-button:hover {
  background-color: #034F82;
}
.footer-toggle-link {
  display: inline-block;
  margin: 5px;
  color: #04569B;
  text-decoration: none;
}
.footer-toggle-link:hover {
  text-decoration: underline;
}
.footer-toggle-container {
  transition: background-color 0.3s ease;
}
.footer-toggle-container.highlighted {
  background-color: #dff0d8;
}
