.site-footer {
  width: 100%; /* Ensure footer spans the full width */
  background-color: #f4f4f4; /* Example background color */
  color: #333; /* Text color */
  padding: 20px 0; /* Top and bottom padding */
  margin: 0 auto; /* Remove any margin that might center it */
  box-sizing: border-box; /* Include padding and border in the element's total width */
}

.footer-container {
  width: 100%; /* Ensure the container within the footer also spans the full width */
  max-width: 1200px; /* Maximum width of the content within the footer */
  margin: 0 auto; /* Center the content within the footer */
  padding: 0 15px; /* Padding on the sides, adjust as necessary */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-links {
  list-style: none; /* Remove default list styling */
  padding: 0; /* Remove default padding */
  margin: 20px 0; /* Margin above and below the navigation links */
  display: flex; /* Display links in a row */
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: center; /* Center links horizontally */
}

.footer-links li {
  margin: 0 10px; /* Space out the links */
}

.footer-links a {
  color: #007bff; /* Bootstrap primary link color */
  text-decoration: none; /* No underlines on links */
}

.footer-links a:hover {
  text-decoration: underline; /* Underline on hover for discoverability */
}

.social-media a {
  display: inline-block;
  margin: 0 10px;
  color: #333; /* Icon color */
  font-size: 24px; /* Icon size */
}

.social-media a i {
  font-size: 24px; /* Larger icons */
  margin-right: 8px; /* Space between icon and text */
}

.social-media a:hover {
  color: #007bff; /* Icon color on hover */
}
