@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.content {
  flex: 1;
  padding: 10px;
  text-align: center;
  color: #666;
}

footer {
  background: #20263e;
  color: white;
  padding: 15px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.footer-section h3 {
  color: #aaafff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section p,
.footer-section li {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: center;
}

.social-icons {
  display: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #bdc3c7;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
}

.social-icons a:hover {
  color: #aaafff;
  transform: translateY(-3px);
  background: rgba(139, 92, 246, 0.2);
}

.contact-info .bi {
  display: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.contact-info i {
  color: #aaafff;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1.5rem;
  text-align: center;
  color: #95a5a6;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.footer-logo b {
  font-weight: 700;
  color: #aaafff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-info {
    justify-content: center;
  }

  .footer-container {
    padding: 0 1rem;
  }

  footer {
    padding: 2rem 0 1rem 0;
  }

}

@media (max-width: 480px) {
  .footer-section h3 {
    font-size: 1.1rem;
  }

  .social-icons a {
    font-size: 1.3rem;
    padding: 0.4rem;
  }

  .footer-logo {
    font-size: 1.3rem;
  }
}
