/* Legal Page Styles */
.legal-page-container {
    background-color: #fcfcfc;
    min-height: 80vh;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.legal-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
    background: #fff;
    padding: 60px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.legal-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.legal-text-block p {
    font-family: 'Georgia', serif;
    /* Serif for readability in legal texts */
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.legal-text-block ul {
    list-style-type: square;
    margin: 0 0 24px 24px;
    padding-left: 20px;
}

.legal-text-block li {
    font-family: 'Georgia', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.legal-footer {
    font-style: italic;
    margin-top: 40px;
    font-size: 14px;
    color: #999;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-title {
        font-size: 20px;
    }
}