/* Shared footer styles for all pages */

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 5%; /* Changed from fixed 165px to relative 5% for better responsiveness */
  background: #111;
  color: #fff;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-left p {
  font-size: 14px;
  color: #a0a0a0;
  margin: 5px 0;
}

.footer-right {
  text-align: right;
}

footer h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding: 15px;
  font-size: 12px;
  background: #111;
  color: #666;
  border-top: 1px solid #333;
  margin: 0;
}
