.footer {
  width: 100%;
  padding: 30px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #F9FAFB;
}

.containerfooter {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.links a {
  color: #333;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.links a:hover {
  color: #1c5fdf;
  text-decoration: underline 2px #f1c227;
}

.socials a {
  color: #333;
  font-size: 18px;
  margin: 0 8px;
  transition: opacity 0.3s ease;
}

.socials a:hover {
  opacity: 0.7;
  color: #1c5fdf;
}

.footer p {
  font-size: 13px;
  color: #686868;
  text-align: center;
  margin-top: 10px;
}

/*  Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 20px 30px;
  }

  .containerfooter {
    flex-direction: column;
    gap: 15px;
  }

  .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .links a {
    margin: 5px 10px;
    font-size: 13px;
  }

  .socials {
    display: flex;
    justify-content: center;
  }

  .socials a {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .footer {
    gap: 15px;
  }

  .footer p {
    font-size: 12px;
  }
}




