/* static/css/legal_page.css */

.legal-wrapper {
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    background-color: #0a2d3e;
    color: white;
    display: flex;
    flex-direction: column;
}

.legal-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #004d40;
    position: relative;
    justify-content: center;
}
.legal-header h1 {
    font-size: 1.2em;
    margin: 0;
}
.legal-header .back-btn {
    position: absolute;
    left: 15px;
    color: white;
    font-size: 1.2em;
    text-decoration: none;
}

.legal-content {
    padding: 20px;
    line-height: 1.7;
    font-size: 0.9em;
    flex-grow: 1;
}

.legal-content h2 {
    color: #4db6ac;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid #4db6ac;
    padding-bottom: 5px;
}

.legal-content p {
    color: #ccc;
}

.last-updated {
    margin-top: 40px;
    text-align: center;
    font-style: italic;
    color: #aaa;
}