/* Footer Styles */
.footer {
  background-color: #292929;
  color: white;
  padding: 50px 0 0;
  margin-top: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 0 120px 30px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-column h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #2d69f8;
}

.footer-column p {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbb;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #2d69f8;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #bbb;
}

.contact-info i {
  margin-right: 10px;
  color: #2d69f8;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: #2d69f8;
  transform: translateY(-3px);
}

.footer-bottom {
  background: #1f1f1f;
  padding: 20px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #bbb;
  font-size: 14px;
}

.payment-methods {
  display: flex;
  gap: 15px;
  font-size: 24px;
  color: #bbb;
}

/* Mobile Footer */
@media (max-width: 992px) {
  .footer-top {
    padding: 0 40px 30px;
  }
  
  .footer-bottom {
    padding: 20px 40px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    padding: 0 20px 30px;
  }
  
  .footer-column {
    min-width: 100%;
    margin-bottom: 30px;
  }
  
  .footer-bottom {
    padding: 20px;
  }
}