.pd-footer {
  width: 100%;
  background: #fff;
  padding: 20px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: #4B3D1A;
  font-size: 16px;
  font-weight: 400;
  border-top: 1px solid #eee;
}

.pd-footer p {
  margin: 0;
}

.pd-footer-icons {
  display: flex;
  gap: 12px;
}

.pd-footer-icons a {
  text-decoration: none;
  color: #4B3D1A;
  transition: opacity 0.3s ease;
}

.pd-footer-icons a:hover {
  opacity: 0.7;
}

.pd-footer-icons i {
  font-size: 22px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .pd-footer {
    flex-direction: column;
    gap: 10px;
    padding: 20px 40px;
    text-align: center;
  }

  .pd-footer-icons {
    justify-content: center;
  }
}
