/* Footer styling */
    .site-footer {
      background-color: #4b0082;
      color: #b3b3b3;
      padding: 20px 10px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px; /* Adds space between copyright and links on mobile */
    }

    /* Inline menu styling using Flexbox */
    .footer-menu {
      list-style: none;
      display: flex;
      flex-wrap: wrap; /* Allows links to wrap gracefully on very small screens */
      justify-content: center;
      gap: 20px; /* Modern way to add spacing between inline items */
    }

    .footer-menu a {
      color: #b3b3b3;
      text-decoration: none;
      font-size: 14px;
      transition: background-color 0.3s ease;
		}

    /* Hover effect for the links */
    .footer-menu a:hover {
      color: #ffffff;
			text-decoration: underline;	
    }
		
    .copyright {
      font-size: 14px;
      color: #8c8c8c;
    }

    /* Responsive design for larger screens */
    @media (min-width: 768px) {
      .footer-container {
        flex-direction: row;
        justify-content: space-between; /* Puts copyright on left, menu on right */
        gap: 0;
      }
    }