@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* Header End */

footer {
  background-color: #4caf50; /* Green background */
  color: white; /* White text */
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: center; /* Center align items */
  margin-bottom: 20px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  padding: 5px 0;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-info {
  text-align: center;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column; /* Stack links vertically */
    align-items: center; /* Center align vertically stacked links */
  }

  .footer-menu a {
    margin: 5px 0; /* Add vertical spacing for stacked links */
  }
}

@media (max-width: 480px) {
  footer {
    padding: 15px;
  }

  .footer-menu a {
    font-size: 12px; /* Smaller font for very small screens */
  }

  .footer-info p {
    font-size: 12px;
  }
}
