footer {
  padding: 1.5rem 0;
  background-color: #1C2A24;
  color: white;
  margin-top: 4rem;
  width: 100%;
  position: relative;
}

footer .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}

footer .footer-logo {
  position: absolute;
  left: 0.5rem;
  top: 0;
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  margin-left: -200px;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: -420px;
  padding-right: 0;
}

footer .footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 0;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: right;
}

footer .footer-links li {
  margin-bottom: 16px;
  text-align: right;
}

footer .footer-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: opacity 0.2s ease;
  display: block;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

footer .footer-links a:hover {
  opacity: 0.8;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  footer .footer-section {
    align-items: flex-start;
  }

  footer .footer-links li {
    text-align: left;
  }
} 