.footer {
  background-color: rgb(1, 29, 68);
  color: rgb(240, 245, 249); 
  padding: 40px 20px 20px;
  font-family: Roboto, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgb(240, 245, 249);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgb(53, 130, 203); 
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-right: 8px;
  width: 200px;
}

.footer-newsletter button {
  padding: 10px 16px;
  background-color: rgb(53, 105, 203);
  color: rgb(1, 37, 68);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background-color: rgb(37, 89, 168);
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-newsletter input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-newsletter button {
    width: 100%;
  }
}
