/* Footer */
.site-footer { 
    background-color: #2e2e2e; 
    color: #a9b3c6; 
    padding: 60px 0 20px;
}

.footer-container { 
    display: flex; 
    justify-content: center; /* This will center the footer-links container */
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 40px; 
    gap: 3rem; 
    text-align: center; /* Center align the text within the container */
}

/* --- UPDATED STYLES START HERE --- */
.footer-about { 
    display: none; /* This will hide the about section */
}

.footer-links { 
    flex: 0 1 auto; /* Allow the container to size to its content */
}
/* --- UPDATED STYLES END HERE --- */

.site-footer h3 { 
    color: #fff; 
    margin-bottom: 1.5rem; 
}

.social-icons {
    margin-top: 1.5rem; /* Add some space above the social icons */
}

.social-icons a { 
    color: #fff; 
    margin: 0 7.5px;
    font-size: 1.2rem; 
    transition: color 0.3s; 
}

.social-icons a:hover { 
    color: #f39c12; 
}

.footer-links ul { 
    list-style: none; 
    padding: 0; 
}

.footer-links li { 
    margin-bottom: 1rem; 
}

.footer-links a { 
    color: #a9b3c6; 
    text-decoration: none; 
    transition: color 0.3s, padding-left 0.3s; 
}

.footer-links a:hover { 
    color: #f39c12; 
    padding-left: 5px; 
}

.footer-bottom { 
    text-align: center; 
    border-top: none;
    padding-top: 20px; 
    margin-top: 40px; 
}

@media (max-width: 900px) {
    .footer-links a:hover {
        padding-left: 0; 
    }
}