.site-footer {
    width: 100%;
    margin-top: 10px;
    background: #ffe600;
    color: #f9fafb;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.footer-inner h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.footer-inner p {
    margin: 0 0 18px;
    color: #d1d5db;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
}

.footer-nav a {
    color: #f9fafb;
    text-decoration: none;
    font-weight: 600;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-copy {
    width: 100%;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #333;
    font-size: 15px;    
}