/* public/css/partials/footer.css */
.footer {
    background-color: #333; /* Dark background */
    color: #fff;
    width: 100%;
    padding: 40px 0px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-top: 50px;
    text-align: left;
}

.footer .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.footer .footer-section {
    flex: 1 1 200px;
}

.footer .footer-section h3 {
    margin-bottom: 15px;
    color: #FECF2F;
    font-size: 16px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer a:hover {
    color: #FECF2F;
}

.footer .socials a {
    margin-right: 12px;
    font-size: 20px;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #444;
    margin-top: 40px;
}

*, *::before, *::after {
    box-sizing: border-box;
}