/* Footer */
footer {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1rem 0;
  bottom: 0;
  left: 0;
  width: 100%;
  position: fixed;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.download-btn {
  background: linear-gradient(45deg, #ff8a8a, #f294ae, #a48efb);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

}

.download-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;

}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
}