.legal-page {
        max-width: 900px;
        margin: 2rem auto 4rem;
        padding: 0 1.5rem;
    }
    
    .legal-header {
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 92, 0, 0.2);
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, #FF5C00, #FF8C00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .legal-header .last-updated {
        color: #9fa7c7;
        font-size: 0.95rem;
    }
    
    .legal-section {
        background: rgba(27, 33, 54, 0.5);
        border: 1px solid rgba(82, 96, 140, 0.25);
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 1.5rem;
        transition: border-color 0.2s ease;
    }
    
    .legal-section:hover {
        border-color: rgba(255, 92, 0, 0.3);
    }
    
    .legal-section h2 {
        color: #ffffff;
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .legal-section h2::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 1.5rem;
        background: linear-gradient(180deg, #FF5C00, #FF8C00);
        border-radius: 2px;
    }
    
    .legal-section p {
        color: #c4cce8;
        line-height: 1.75;
        margin-bottom: 1rem;
    }
    
    .legal-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .legal-section ul li {
        position: relative;
        padding-left: 1.75rem;
        margin-bottom: 0.75rem;
        color: #b8c0dc;
        line-height: 1.65;
    }
    
    .legal-section ul li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #FF5C00;
        font-weight: bold;
    }
    
    .legal-section ul li strong {
        color: #ffffff;
    }
    
    .legal-section a {
        color: #FF5C00;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s ease;
    }
    
    .legal-section a:hover {
        border-bottom-color: #FF5C00;
    }
    
    .refund-eligible {
        border-left: 4px solid #28a745;
    }
    
    .refund-eligible h2::before {
        background: linear-gradient(180deg, #28a745, #20c997);
    }
    
    .refund-eligible ul li::before {
        content: '✓';
        color: #28a745;
    }
    
    .non-refundable {
        border-left: 4px solid #dc3545;
    }
    
    .non-refundable h2::before {
        background: linear-gradient(180deg, #dc3545, #e83e8c);
    }
    
    .non-refundable ul li::before {
        content: '✗';
        color: #dc3545;
    }
    
    .contact-box {
        background: linear-gradient(135deg, rgba(255, 92, 0, 0.1), rgba(255, 140, 0, 0.05));
        border: 1px solid rgba(255, 92, 0, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        margin-top: 1rem;
    }
    
    .contact-box .email {
        font-size: 1.1rem;
        color: #FF5C00;
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .legal-header h1 {
            font-size: 1.8rem;
        }
        
        .legal-section {
            padding: 1.5rem;
        }
        
        .legal-section h2 {
            font-size: 1.2rem;
        }
    }
