.header{ 
    padding: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00C853, #00BFA6);
    border-radius: 50%;
    padding: 3px;
}
    
.logo img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
}

.user-info {
    font-size: 20px;
    color: var(--gray-900);
}

.legal-container {
    background: var(--white);
    border-radius: 32px;
    padding: 48px 56px;
}

.page-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0c2e48;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.page-title i {
    color: #1e6b9b;
    font-size: 22px;
}

.last-updated {
    background: #ecf5fa;
    padding: 12px 22px;
    border-radius: 60px;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1b4b6e;
    margin: 8px 0 32px 0;
    border: 1px solid #cde3f0;
}

.last-updated i {
    margin-right: 8px;
    color: #2a6f97;
}

.section { margin-top: 36px; }
.section h2 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #153e5a;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(25, 120, 180, 0.2);
    padding-bottom: 8px;
}

.section p {
    margin-bottom: 18px;
    color: #253d54;
    font-size: 16px;
}

.bullet-list {
    list-style: none;
    margin: 20px 0 10px 0;
}

.bullet-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
}

.bullet-list li i {
    color: #1e6b9b;
    font-size: 16px;
    min-width: 26px;
    margin-top: 3px;
}

.chip-highlight {
    background: #f0f7fe;
    border-left: 5px solid #1e6b9b;
    padding: 20px 28px;
    border-radius: 18px;
    margin: 28px 0 12px;
    font-weight: 500;
}

.chip-highlight i {
    color: #1e6b9b;
    margin-right: 12px;
}

/* --- footer --- */
.site-footer {
    background: #102b3f;
    color: #d4e2ed;
    padding: 40px 0 28px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col p {
    margin: 16px 0 10px;
    font-size: 0.95rem;
    color: #b6d0e2;
}

.footer-col h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbdbe9;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 18px;
    font-size: 1.3rem;
}

.social-icons a {
    color: #cbdbe9;
}

.copyright {
    text-align: center;
    border-top: 1px solid #264c66;
    padding-top: 28px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #a3c0d4;
}

/* --- responsive touches --- */
@media (max-width: 700px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .page-card {
        padding: 32px 24px;
        margin: 30px 0;
        border-radius: 28px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .page-title {
        flex-direction: column;
        align-items: start;
        gap: 4px;
    }

    .last-updated {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .bullet-list li {
        align-items: flex-start;
    }
}

/* dummy interactive JS */
.print-info {
    background: #f1f9f0;
    border-radius: 40px;
    padding: 8px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 450;
    border: 1px solid #97c3da;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 16px;
}

.print-info:hover {
    background: #dff0fa;
}