.site-footer {
  width: 100%;
  overflow-x: hidden;
  height: 96px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer li,
.site-footer a,
.site-footer span,
.site-footer p {
  color: white !important;
}

.site-footer h3 {
  margin-bottom: 16px;
}

.site-footer li {
  list-style-type: none;
}

.site-footer ul {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.footer-social p {
  color: white !important;
}

.legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 260px;
  padding: 18px 320px;
}

.legal a {
  color: var(--color-text);
}

.site-footer a:hover {
  cursor: pointer;
  color: var(--color-accent) !important;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */

/* Extra Large Devices (1200px – 1599px) */
@media (max-width: 1599px) {
  .overview {
    gap: 80px;
  }
  .legal {
    padding: 18px 72px;
  }
  .insta-link {
    top: 40%;
    left: 50%;
  }
}

/* Large Devices (992px – 1199px) */
@media (max-width: 1199px) {
  .overview {
    gap: 32px;
  }
}

/* Medium Devices (768px – 991px) */
@media (max-width: 991px) {
  .overview {
    flex-direction: column-reverse;
    padding: 32px 240px;
  }

  .social-img {
    height: unset;
  }

  .social-img img {
    height: 190px;
  }

  .legal {
    gap: 44px;
    justify-content: center;
    padding: 12px 24px;
  }
}

/* Small Devices (576px – 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .overview {
    flex-direction: column-reverse;
    padding: 32px 120px;
  }
  .social-img img {
    height: 160px;
  }

  .legal {
    flex-direction: column-reverse;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 435px) {
  .site-footer {
    height: auto;
  }

  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .legal-links span {
    display: none;
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 575px) {
  .overview {
    flex-direction: column-reverse;
    padding: 24px 24px;
  }
  .social-img img {
    height: 160px;
  }

  .legal {
    flex-direction: column-reverse;
    gap: 8px;
    text-align: center;
  }
}
