footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    }
    
    .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    }
    
    .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    }
    
    .footer-links a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    
    }
    
    .footer-links a:hover {
    color: #FFA500; 
    }
    
    .footer-links a:not(:last-child)::after {
    content: " | ";
    margin-left:5px;
    color: #FFF
    }
    
    .footer-links a:last-child::after {
    content: none;
    }
    .footer-divider {
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .footer-links.follow-us {
    display: flex;
    }
    .footer-links.follow-us a {
    margin-right: 15px;
    }
    .footer-links.follow-us span {
    margin-bottom: 5px;
    }       
    .footer-links.follow-us i {
    font-size: 24px; 
    }
    @media (max-width: 768px) {
    .footer-links {
    flex-direction: column;
    }
    
    .footer-links a {
    margin-right: 0;
    margin-bottom: 10px;
    }
    }
    @media (max-width: 768px) {
    .footer-content {
    flex-direction: column;
    align-items: center;
    }
    
    .footer-links {
    margin-top: 20px;
    }
    
    .footer-links a {
    margin-right: 0;
    margin-bottom: 10px;
    }
    
    .footer-links a:not(:last-child)::after {
    display: none; 
    }
    }