.site-footer {
  color: rgb(102, 102, 102);
  background-color: #e7eef4;
  font-size: 18px;
}

.site-footer a {
  color: rgb(102, 102, 102);
  text-decoration: none;
}

.site-footer-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  min-height: 200px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 80px 150px 120px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.divider {
  height: 1px;
  background-color: #ccc;
  margin: 15px auto;
  /* max-width: 1200px; */
  width: 100%;
}

.footer-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}

.footer-column {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-column>a {
  line-height: 0.75;
}

.footer-nurture-links {
  padding-bottom: 30px;
}

.footer-social-link {
  display: flex;
  flex-direction: row;
  gap: 15px;
  color: rgb(102, 102, 102);
  align-items: center;
}

.footer-social-link img {
  width: 15px;
  height: 15px;
}

.footer-download-legal {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
}

.footer-legal-column {
  color: rgb(102, 102, 102);
  max-width: 40%;
  justify-content: flex-start;
  gap: 15px;
}

.footer-legal-row {
  justify-content: flex-start;
  gap: 70px;
}

.footer-download-section {
  justify-content: flex-end;
  align-self: stretch;
  gap: 15px;
  align-items: center;
}

.footer-download-link {
  width: 150px;
  height: 60px;
}

.footer-bottom {
  font-size: 16px;
  justify-content: space-between;
  margin-top: 0px;
}

/* Responsive styles */
@media (min-width: 800px) {
  .site-footer-mobile {
    display: none;
  }
}

@media (min-width: 800px) and (max-width: 1200px) {
  .site-footer-desktop {
    padding: 60px;
  }

  .footer-download-link {
    width: 120px;
    height: 50px;
  }
}

@media (max-width: 799px) {
  .footer-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
  }

  .site-footer-desktop {
    display: none;
  }

  .site-footer-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 30px 60px;
    gap: 25px;
    overflow: scroll;
    margin-top: 50px;
    font-size: 16px;
  }

  .site-footer-mobile p {
    margin: 0;
  }

  .footer-download-section {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-download-link {
    width: 200px;
    height: 80px;
  }

  .footer-nurture-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    /* padding-bottom: 0px; */
    padding: 0px 20px 0px;
  }

  .footer-nurture-links-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    gap: 15px;
  }

  .footer-nurture-links-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 230px;
  }

  .footer-social-link {
    gap: 10px;
  }

  .footer-download-legal {
    width: 100%;
    text-align: center;
    align-items: center;
    padding-top: 0px;
  }

  .footer-legal-column {
    color: rgb(102, 102, 102);
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
  }

  .footer-legal-row {
    display: flex;
    flex-direction: row;
    text-align: center;
    width: 310px;
    justify-content: space-around;
    gap: 0;
  }

  .footer-bottom {
    padding-bottom: 0px;
    width: 310px;
    text-align: center;
  }

  .divider {
    margin-top: 5px;
    margin-bottom: 5px;
  }

}