.main-footer {
    background: #111;
    color: #999;
    padding: 80px 5% 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.motto {
    font-style: italic;
    color: var(--primary);
    margin-top: 10px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: #999;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    margin-top: 50px;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}