.site-footer {
  background: #0b1c2d;
  color: #ddd;
  padding: 50px 0 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-box h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-box p,
.footer-box li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-box ul li a:hover {
  color: #00bfff;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  background: #1a2f45;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: #00bfff;
}

.footer-bottom {
  background: #081420;
  text-align: center;
  padding: 15px 10px;
  margin-top: 40px;
  font-size: 14px;
}
