.site-footer {
  background: #183565; /* dark background */
  padding: 40px 20px;
  border-top: 1px solid #333;
  color: #ffffff; /* white text */
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-contact a,
.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #00aaff; /* accent hover color */
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #cccccc;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

