/* ================ THEME TOKENS (keep in each CSS as requested) ================ */
:root {
    --primary: #00A4FF;
    --primary-dark: #00389B;
    --bg: #f7f7f7;
    --text: #1f2937;
    --white: #ffffff;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ================ FOOTER ================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 56px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 12px;
}

.footer-about p {
    opacity: .9;
}

.footer-links h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: #e5f2ff;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}