footer {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 3rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  border-bottom: 2px solid white;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.footer-section li {
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.footer-section li:hover {
  transform: translateX(5px);
}

.footer-section p {
  transition: transform 0.3s ease;
}

.footer-section p:hover {
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  color: white;
  font-size: 2rem;
  transition: opacity 0.3s ease;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-bottom a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 374px) {
  .footer-bottom {
    font-size: 0.8rem;
  }
}
