/* Footer Styles */
.mc-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.mc-footer h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mc-footer ul {
    padding: 0;
}

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

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

.mc-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-divider {
    border-color: #34495e;
    margin: 2rem 0 1rem;
    opacity: 0.5;
}

.mc-footer .text-center {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mc-footer {
        padding: 2rem 0 1rem;
    }
    
    .mc-footer h5 {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .mc-footer h5:first-child {
        margin-top: 0;
    }
}

