* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background-color: #aa3235;
  /* box-shadow: 1px solid #fff; */
  color: #ffffffb9;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

.footer-wave {
  position: absolute;
  width: 100%;
  line-height: 0;
  z-index: 0;
}

.footer-wave svg {
  display: block;
  /* width: 100%; */
  /* height: 100px; */
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  align-items: stretch;
  align-content: center;
}

.footer-section h2 {
  font-size: 1.2em;
  color: #aa3235;
  text-shadow: 0px 2px 0px #0000009d;
  margin-bottom: 15px;
  position: relative;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: #ffffffb9;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #aa3235;
}

.social-icons a {
  color: #aa3235;
  margin: 0 10px;
  font-size: 1.5em;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background-color: #222831;
  color: #aaa;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-content: baseline;
  }
  .footer-section h2 {
    font-size: 1.2em;
    color: #000000;
    text-shadow: none;
    margin-bottom: 15px;
    position: relative;
  }
}
