.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-intro {
        background: rgba(27, 33, 54, 0.7);
        border: 1px solid rgba(82, 96, 140, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 2.5rem;
        line-height: 1.7;
        color: #c4cce8;
    }
    
    .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 h3 {
        color: #e8ecf5;
        font-size: 1.1rem;
        margin: 1.5rem 0 1rem;
    }
    
    .legal-section p {
        color: #c4cce8;
        line-height: 1.75;
        margin-bottom: 1rem;
    }
    
    .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;
    }
    
    .cookie-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin: 1rem 0;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(82, 96, 140, 0.3);
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 1rem 1.25rem;
        text-align: left;
        border-bottom: 1px solid rgba(82, 96, 140, 0.2);
    }
    
    .cookie-table th {
        background: rgba(255, 92, 0, 0.1);
        color: #ffffff;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .cookie-table td {
        background: rgba(20, 24, 40, 0.4);
        color: #b8c0dc;
    }
    
    .cookie-table tr:last-child td {
        border-bottom: none;
    }
    
    .cookie-table tr:hover td {
        background: rgba(30, 36, 56, 0.6);
    }
    
    .cookie-table code {
        background: rgba(255, 92, 0, 0.15);
        color: #FF8C00;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.9em;
        font-family: 'Monaco', 'Menlo', monospace;
    }
    
    @media (max-width: 768px) {
        .legal-header h1 {
            font-size: 1.8rem;
        }
        
        .legal-section {
            padding: 1.5rem;
        }
        
        .legal-section h2 {
            font-size: 1.2rem;
        }
        
        .cookie-table {
            display: block;
            overflow-x: auto;
        }
        
        .cookie-table th,
        .cookie-table td {
            padding: 0.75rem;
            font-size: 0.9rem;
        }
    }
