.site-footer {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: #f2f5f4;
  color: #242526;
  padding: 80px 40px 50px;
  font-size: 1.2em; /* Bigger base font size */
}

.footer-columns {
  display: flex;
  justify-content: space-between; /* Pushes columns far apart */
  gap: 750px; /* Optional extra spacing */
  max-width: 1440px;
  margin: 0 auto 50px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 330px;
  line-height: 2; /* Taller line height */
}

.policies {
  line-height: 1.5;
  padding-left: 72px;
}

.footer-col h4 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col ul {
  margin: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 1.1em;
}

.footer-col a {
  color: #242526;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Social icons section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40em;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer-social {
  text-align: left;
}

.footer-social a {
  color: #242526;
  font-size: 3em;
  margin-right: 25px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #c9d952;
}

.footer-copy {
  color: #242526;
  font-size: 1em;
  text-align: right;
  margin-top: 15px;
}