/* Legal Pages Styling */
.legal-section {
    padding: 120px 0 80px;
    background: #000c14; /* Dark navy background matching theme */
    color: #E2E8F0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #0A1628;
    padding: 60px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legal-content h1 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.legal-content h2 {
    font-family: var(--font-heading);
    color: var(--color-accent); /* Orange highlight */
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #94A3B8;
    margin-bottom: 20px;
}

.legal-content strong {
    color: #FFFFFF;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-meta {
    color: #64748B;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

/* List Styling Fixes */
.legal-content ul {
    margin-bottom: 20px;
    padding-left: 40px;
    color: #94A3B8;
    line-height: 1.8;
    list-style-type: disc !important; /* Force bullets */
}

.legal-content ol.legal-list {
    list-style-type: decimal !important; /* Force numbers */
    padding-left: 45px;
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 12px;
    display: list-item !important; /* Ensure markers are shown */
    list-style: inherit;
}

.legal-content ol.legal-list > li::marker {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.legal-content ol.legal-list > li {
    margin-bottom: 30px;
}

.legal-content ol.legal-list > li > h2 {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    width: 100%;
}

.legal-content li::marker {
    color: #94A3B8; /* Make markers visible */
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content ul, .legal-content ol.legal-list {
        padding-left: 25px;
    }
}
