.site-footer {
  background-color: #2e3640;
  color: #fff;
  font-family: "Lato", sans-serif;
}

.footer-content {
  padding: 3rem 20rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo img {
  max-width: 100px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 1rem 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a.active,
.footer-links .current-menu-item > a {
  font-weight: bold;
  color: #e4e4e4;
}

.footer-contact p,
.footer-contact a {
  margin: 1rem 0;
  color: #fff;
  text-decoration: none;
}

.footer-cta .btn-cta {
  background: #fff;
  color: #2e3640;
  padding: 0.8rem 3rem;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  margin-top: 1rem;
}

.footer-bottom {
  background-color: #111;
  padding: 1.3rem 20rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #fff;
  margin: 0;
}

.social-icons a {
  margin-left: 10px;
  border-radius: 100%;
  padding: 6px 7px 2px 7px;
  display: inline-block;
  transition: transform 0.2s ease;
  background-color: #fff;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 3rem 1rem 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-cta {
    margin-top: 1.5rem;
  }

  .footer-bottom {
    padding: 1.3rem 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    font-size: 13px;
  }
}
