.site-footer {
  background-color: #111;
  color: #ddd;
  padding: 50px 0 20px;
  font-size: 15px;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Ensures horizontal spacing on all pages */
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: #00d8ff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00d8ff;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form input {
  padding: 8px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.newsletter-form button {
  padding: 8px;
  background-color: #00d8ff;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background-color: #00aacc;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #bbb;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00d8ff;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
}
