.footer {
    background: #262626;
    color: #E8E8E8;
    padding: var(--spacing-lg) 0 var(--spacing-md) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    justify-items: center;  /* center items in grid cells */
    text-align: center;     /* center text inside sections */
}

.footer-section h3 {
    margin-bottom: var(--spacing-sm);
    color: #FFFFFF;
}

.footer-section p, .footer-section a {
    color: #B8B9BE;
    text-decoration: none;
}

.footer-section a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    text-align: center;
    color: #9A9BA0;
}
