/* Footer Styling */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 5% 1rem;
    margin-top: auto;
    /* Push to bottom if flex container */
    margin-top: 4rem;
}

.main-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.main-footer-logo h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.main-footer-desc {
    color: #999;
    line-height: 1.6;
}

.main-footer-links h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.main-footer-links ul {
    list-style: none;
}

.main-footer-links ul li {
    margin-bottom: 0.8rem;
}

.main-footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.main-footer-links ul li a:hover {
    color: #fff;
}

.main-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}