/* ========================
   FOOTER STYLES
   ======================== */
footer {
    background-color: #FFA732;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgb(0, 0, 0);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #000000;
    color: #000000;
}