/* Footer Component Styles */
#luna-footer .footer {
    background: rgb(255, 255, 255) !important;
    color: rgb(0, 0, 0) !important;
    padding: 60px 20px 30px;
}

#luna-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

#luna-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

#luna-footer .footer-section {
    text-align: left;
}

@media (max-width: 768px) {
    #luna-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: none;
        justify-items: start;
    }
    
    #luna-footer .footer-section {
        text-align: left;
        width: 100%;
    }
}

#luna-footer .footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(0, 0, 0) !important;
}

#luna-footer .footer-section a {
    display: block;
    color: rgb(0, 0, 0) !important;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

#luna-footer .footer-section a:hover {
    color: #7c3aed !important;
}

#luna-footer .footer-section p {
    color: rgb(0, 0, 0) !important;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

#luna-footer .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2) !important;
    padding-top: 30px;
    text-align: center;
}

#luna-footer .footer-bottom p {
    font-size: 14px;
    color: rgb(0, 0, 0) !important;
}