/* Internal styles for Privacy Policy readability */
.legal-page-container {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #111, #000);
    min-height: calc(100vh - 81px - 450px); 
    color: #ccc;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
}

.legal-header p {
    font-size: 1rem;
    color: #aaa;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #0a0a0a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #cf0000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #eee;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #cf0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
        width: 95%;
    }
    .legal-header h1 {
        font-size: 2rem;
    }
}
