.legal-page {
    background-color: #ffffff;
    padding: 60px 40px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    max-width: 800px;
}

.legal-page h1 {
    color: #1a365d;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    border-bottom: 3px solid #4a5568;
    padding-bottom: 15px;
}

.legal-page p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.7;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #2b6cb0;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: #1a365d;
    border-bottom-color: #1a365d;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 30px 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .legal-page h1 {
        font-size: 26px;
    }
}