/* Footer Section */
.footer {
  background: linear-gradient(135deg, #0056ff, #6a0dad);
  color: #ffffff;
  padding: 6rem 2rem;
}

.footer-top {
  text-align: center;
  margin-bottom: 5rem;
}

.footer-top h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-top p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.cta-button {
  background: #ffcc00;
  color: #2b2d42;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 5rem;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background: #ffaa00;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul li {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffcc00;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a img {
  width: 30px;
  transition: transform 0.3s ease;
}

.social-links a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  font-size: 1.2rem;
  color: #e0e0e0;
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-top h2 {
    font-size: 3rem;
  }

  .footer-top p {
    font-size: 1.4rem;
  }

  .footer-column h3 {
    font-size: 1.8rem;
  }

  .footer-column p,
  .footer-column ul li {
    font-size: 1.3rem;
  }

  .cta-button {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}
