.site-footer {
  background-color: black; /* Brown background */
  color: #eeece6; /* Light beige text */
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
  min-height: 300px;
  display: flex;
  justify-content: center;
}

.footer-content {
  width: 100%;
  max-width: 1200px; /* Adjust max-width to center the content nicely */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 5fr; /* Three equal columns */
  gap: 30px; /* Increase space between columns */
  align-items: center;
}

.footer-logo {
  max-width: 250px; /* Ensure the logo scales nicely */
  height: auto;
  fill: #ffffff; /* White fill for the logo */
}

.footer-info {
  max-width: 100%;
}

.footer-business-name {
  font-size: 18px !important;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-business-address,
.footer-business-phone {
  font-size: 16px;
  margin: 5px 0;
  line-height: 1.5;
  letter-spacing: 1px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav li {
  margin-right: 15px;
  margin-bottom: 10px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: #d1bfa7; /* Lightened color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr; /* Stack columns vertically on small screens */
    text-align: center;
    transform: scale(0.9);
  }
  .footer-nav ul {
    justify-content: center;
  }
}/*# sourceMappingURL=footer.css.map */