/* Footer Styling */
.footer {
    padding: 40px 0;
    background-color: #2C2048; /* Your LLMatDesign main color */
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-link {
    color: #d9d9d9;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-size: 16px;
}

.footer-link:hover {
    color: #2C2048;
}

.footer-divider {
    border-top: 1px solid #d9d9d9;
    margin: 20px 0;
}

.footer-text {
    font-size: 14px;
    color: #d9d9d9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer ul {
        display: inline-block;
    }

    .footer .list-inline {
        padding-top: 10px;
    }
}
