.footer {
  background-color: #0d0d0d;
  padding: 50px 20px;
  color: white;
  margin-left: -80px;
  margin-right: -80px;
  overflow-x: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 0 100px;
}

.footer-section {
  flex: 1;
  min-width: 180px;
}
.footer-menu {
  margin-left: 150px;
}
.logo-section {
  max-width: 250px;
}

.footer-logo {
  max-width: 80px;
  margin-bottom: 10px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

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

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  text-decoration: none;
  color: white;
  font-size: 22px;
  transition: 0.2s color ease;
}
.social-icons a:hover {
  color: var(--btn-hover);
}
/* Large screens (Desktops) */
@media (max-width: 1200px) {
  .footer-container {
    max-width: 1100px;
    margin: 0 70px;
  }

  .footer-menu {
    margin-left: 100px;
  }
}
/* Medium screens (Tablets) */
@media (max-width: 900px) {
  .footer {
    margin-left: -50px;
    margin-right: -50px;
  }
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 50%; /* Two sections per row */
    margin-bottom: 30px;
  }

  .footer-menu {
    margin-left: 0;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Small screens (Mobile) */
@media (max-width: 768px) {
  .footer {
    padding: 50px 15px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0 0;
  }

  .footer-section {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .footer-logo {
    max-width: 120px;
  }

  .social-icons {
    gap: 15px;
  }
}

/* Extra small screens (Very Small Mobile) */
@media (max-width: 480px) {
  .footer {
    padding: 50px 10px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .footer-section h3 {
    margin-bottom: 15px;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }
}
