.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px 100px 0px 0px;
  background: #38479c;
  margin-top: 200px;
  width: 100%;
  padding: 40px;
}

.footer-text {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.nav-menu-footer {
  list-style: none; /* This removes the bullets */
  display: flex; /* Already present in your toolbar-container ul */
  gap: 24px; /* Optional: adds spacing between items */
  margin-bottom: 15px;
}

.nav-menu-footer a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: var(--nav-bar-font-size-desktop);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.footer-icon-container {
  display: flex;
  gap: 20px;
}

.footer-icon-container img {
  height: 32px;
}

.divider {
  height: 1px;
  background-color: white;
  width: 100%;
  border: none;
  margin: 32px 0; /* optional spacing above/below */
}

.legal-menu {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  gap: 10px;
}

.legal-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: var(--nav-bar-font-size-desktop);
  padding: 8px 0;
  /* position: relative; */
  transition: color 0.3s;
}

.accessibility-statement-button {
  cursor: pointer;
}
