footer {
      background: #f2f1ef;
      padding: 20px;
      text-align: center;
    }

    .footer-links h3 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #333;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap; /* makes it responsive */
      gap: 20px;
    }

    .footer-links ul li {
      display: inline-block;
    }

    .footer-links ul li a {
      text-decoration: none;
      color: #444;
      font-size: 15px;
      display: flex;
      align-items: center;
      transition: color 0.3s ease;
	  color: black;
    }

    .footer-links ul li a::before {
      content: "›";
      margin-right: 6px;
      font-weight: bold;
      color: #444;
    }

    .footer-links ul li a:hover {
      color: red;
    }