/* Footer Styles */
.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #fff;
}

.footer-top {
  margin-bottom: 20px;
}
.footer-top a {
  margin: 0 8px;
  font-size: 16px;
}

.footer-newsletter {
  margin: 20px auto;
}
.footer-newsletter label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
}
.newsletter-box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: auto;
  border: 1px solid #333;
  background: #111;
}
.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}
.newsletter-box button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
}

.footer-links {
  margin: 30px 0;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin: 6px 0;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 20px;
}
.footer-bottom p {
  margin-bottom: 10px;
}
.footer-bottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom ul {
    flex-direction: row;
    gap: 8px;
  }
  .newsletter-box {
    flex-direction: column;
  }
  .newsletter-box input {
    width: 100%;
    margin-bottom: 8px;
  }
  .newsletter-box button {
    width: 100%;
  }
}
