@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }

html, body {
    background-color: #fff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Navbar */
.legal-nav {
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #00D3B7;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.legal-nav img {
    height: 50px;
    width: auto;
}

.btn-home {
    background: #00D3B7;
    color: #101010;
    text-decoration: none;
    padding: 0.5rem 1.4rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-home:hover {
    background: #00b8a0;
}

/* Content */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem 4rem;
    min-height: calc(100vh - 180px);
}

.legal-content h1 {
    font-size: 2rem;
    color: #101010;
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.legal-content .last-updated {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.legal-content h2 {
    font-size: 1.15rem;
    color: #101010;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    line-height: 1.75;
    color: #555;
    margin-bottom: 1rem;
}

.legal-content a {
    color: #00D3B7;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content ul {
    color: #555;
    line-height: 1.75;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.legal-footer {
    background: #fff;
    padding: 2rem;
    text-align: center;
    color: #777;
    font-size: 0.8rem;
    line-height: 2.2;
    border-top: 2px solid #00D3B7;
}

.legal-footer strong {
    color: #222;
    font-size: 1rem;
}

.legal-footer a {
    color: #00D3B7;
    text-decoration: none;
}

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

.legal-footer .footer-links {
    margin-top: 0.5rem;
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
}

.legal-footer .footer-links a {
    margin: 0 0.75rem;
    font-size: 0.85rem;
}

@media (max-width: 700px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-nav {
        padding: 0.75rem 1rem;
    }
}
