.footer-wrapper{
  background-color: var(--color-pink);
}

.footer{
    padding: 40px; 16px;
    max-width: 1332px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}
.footer{
    color: var(--color-dark);
}

.footer-left p{
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
}

.footer-left p:first-of-type{
    margin-bottom: 6px;
}

/* Container Background */
.footer-menu {
  background-color: #F5837A; /* The salmon color */
  padding: 0 0;
  text-align: center;        /* Centers the menu items */
}

/* Remove default list styling */
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* List Items (Horizontal Layout) */
.footer-menu li {
  display: inline-block;
}

/* The Links */
.footer-menu a {
  text-decoration: none;
  padding: 0 10px;           /* Space around the text */
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
    color: var(--color-dark) !important;
}

.footer-menu a:hover {
  text-decoration: underline;
}

/* The Magic Pipe Separator (|) */
/* Adds a pipe after every item EXCEPT the last one */
.footer-menu li:not(:last-child)::after {
  content: "|";
  opacity: 0.7;              /* Makes the pipe slightly softer */
}