.site-footer {
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 3px solid #d32f2f; /* Mr Grar red accent */
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer a {
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.site-footer a:hover {
  color: #ff0000;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 140px;
  text-align: right; /* Hebrew layout */
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  border-right: 3px solid #d32f2f;
  padding-right: 8px;
}

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

.footer-column li {
  margin-bottom: 6px;
}

.footer-column a {
  color: #000000;
  font-size: 0.95rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h4 {
    border-right: none;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 5px;
  }
}
