.footer {
  background-color: #3358EF;
  padding: 48px 0 32px;
  color: white;
  width: 100%;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 64px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
  color: #CBF84C;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer-social-link img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
}

.footer-social-link:hover {
  opacity: 0.8;
}

.footer-divider {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: opacity 0.2s;
}

.footer-legal-link:hover {
  opacity: 1;
  text-decoration: underline;
  color: #CBF84C;
}


@media (max-width: 768px) {
  .footer-container {
    padding: 0 32px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
  }

  .footer .w-container {
    max-width: none !important;
    width: 100% !important;
  }

  @media (max-width: 768px) {
    .footer-social {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
      width: 100%;
    }
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    width: 100%;
  }

  .footer-legal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
}
