/* Footer Styles */
.footer {
  background-color: #222;
  color: var(--white);
  padding: 50px 0 20px;
}

.customer-service, 
.order-tracking {
  margin-bottom: 40px;
}

.customer-service h3,
.order-tracking h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.customer-service h3::after,
.order-tracking h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.customer-service p,
.order-tracking p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

.track-btn {
  margin-bottom: 15px;
  display: inline-block;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.methods{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  color: var(--primary-color);
  img {
    margin-top: 20px;
    scale: 2;

  }
}

.footer-info h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-info img {
  max-height: 40px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.copyright p {
  color: #666;
  font-size: 12px;
}